Spring Boot doesn't use CommonsMultipartResolver?
问题 I have a problem with REST web service running with Spring Boot (Jetty). One of my REST method is file upload and I'm guessing that CommonsMultipartResolver is not using during multipart requests. Signature of this upload method is : @ResponseBody @RequestMapping(value = "/upload", method = RequestMethod.POST, produces = "application/json") public BaseResponse upload(@RequestParam("login") String login, @RequestParam("passwd") String passwd, @RequestParam("partner") String partner,