简体   繁体   中英

ClientHandlerException: MIME media type, multipart/form-data, was not found

I am using Jersey client to hit a Spring MVC REST Controller for image uploading functionality. I am getting the following exception:

com.sun.jersey.api.client.ClientHandlerException: A message body writer for Java type, class org.springframework.web.multipart.commons.CommonsMultipartFile, and MIME media type, multipart/form-data, was not found

My Controller Method to POST the Image:

@RequestMapping(value = "/file/upload", method = RequestMethod.POST)
public String fileUpload(@RequestParam("fileUpload") MultipartFile file, 
Model model, HttpServletRequest request, HttpServletResponse response)
{
try
{   
    ClientConfig config = new DefaultClientConfig();
    com.sun.jersey.api.client.Client client = com.sun.jersey.api.client.Client.create(config);
    WebResource webResource = client.resource("/save-image");

    ClientResponse responseMsg = webResource
            .type(MediaType.MULTIPART_FORM_DATA)
            .post(ClientResponse.class, file);          
}
catch (Exception e)
{
    logger.error("Exception in fileUpload()", e);
    return "error";
}
return "success";
}

My REST Controller method get the post data:

@ResponseBody
@Consumes(MediaType.MULTIPART_FORM_DATA)
@RequestMapping(value = "/save-image", method = RequestMethod.POST)
public String saveImage(@FormDataParam("file") MultipartFile file, ModelMap 
model)
{
    //Code to save the image
}

Is there a solution to this exception. I have tried according to the following stack solutions but I am still getting the same exception.

Jersey client exception: A message body writer was not found

Sending multiple files with Jersey: MessageBodyWriter not found for multipart/form-data

Have you added the dependencies for multipart?

<!-- Jersey client support  -->
      <dependency>
       <groupId>com.sun.jersey</groupId>
       <artifactId>jersey-client</artifactId>
       <version>1.9</version>
      </dependency>

      <dependency>
       <groupId>com.sun.jersey</groupId>
       <artifactId>jersey-json</artifactId>
       <version>1.9</version>
      </dependency>

      <dependency>
        <groupId>com.sun.jersey.contribs</groupId>
        <artifactId>jersey-multipart</artifactId>
        <version>1.9</version>
    </dependency>

      <dependency>
       <groupId>commons-io</groupId>
       <artifactId>commons-io</artifactId>
       <version>1.3.2</version>
      </dependency>

    <!-- Apache Commons FileUpload -->
    <dependency>
        <groupId>commons-fileupload</groupId>
        <artifactId>commons-fileupload</artifactId>
        <version>1.3.1</version>
    </dependency>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM