I am facing the same problem as Springboot Required request part 'file' is not present and the solutions provided here have not worked. Spring boot version v2.2.1
spring.http.multipart.enabled=true
Anything else I can do?
@RequestMapping(value = "/executescript", method = RequestMethod.POST, consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
public @ResponseBody String uploadFileHandler(@RequestParam("File") MultipartFile file)