Привет ниже мой контроллер.
@ApiOperation(value = "Upload an image")
@PostMapping(value = "/{floorId}/image", consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<testDto> uploadImage(@PathVariable("id") Long id, @RequestParam("file") MultipartFile file, HttpServletRequest request) throws IOException {
//code
}
Мне нужно загрузить файл multipart
, но он выдает ошибку.
org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'multipart/form-data;boundary=----WebKitFormBoundaryajuBBqoomcGTlTGl' not supported
at org.springframework.web.servlet.mvc.method.RequestMappingInfoHandlerMapping.handleNoMatch(RequestMappingInfoHandlerMapping.java:214)
at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.lookupHandlerMethod(AbstractHandlerMethodMapping.java:419)
Кто-нибудь может мне помочь?
Спасибо