Spring Controller @RequestBody with file upload is it possible?
You can actually simplify your life here since all you are doing is submitting a form that contains some fields and file. You don’t need @RequestBody for what you are trying to do. You can use regular Spring MVC features, so your controller method would look like: @ResponseBody public WebResponse<Boolean> updateEUSettings( Locale locale, @Valid EUPSettingsWrapper … Read more