I am passing Multipart file with other user information . i am getting Failed to convert property value of type java.lang.String
to required type org.springframework.web.multipart.MultipartFile
for property file;
nested exception is java.lang.IllegalStateException: Cannot convert value of type 'java.lang.String' to required type 'org.springframework.web.multipart.MultipartFile'
Below code I have tried
private String useremail;
private int employeecode;
private MultipartFile file;
controller class
@RequestMapping(value = RestMappingUrls.User.saveUser, headers = {"content-type=multipart/mixed","content-type=multipart/form-data"} ) public RestResponse saveUser(@ModelAttribute UserPojo user) throws IllegalStateException, IOException {