Multipart file maximum size exception - spring boot embbeded tomcat
I have set max file size to multipart.maxFileSize: 1mb multipart.maxRequestSize: 1mb This is my controller : @RequestMapping(method=RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.MULTIPART_FORM_DATA_VALUE) @ResponseStatus(HttpStatus.CREATED) @Secured(Privileges.CAN_USER_READ) public void create(@RequestParam("file")final MultipartFile file,Principal principal) throws IllegalStateException, IOException,MultipartException{ medicalHistoryService.create(new MedicalHistory(file)); } this is error message 2016-03-03 13:48:24.560 WARN 4992 --- [nio-8080-exec-1]