Could not instantiate bean class [org.springframework.web.multipart.MultipartFile]: Specified class

如果在使用SpringMVC中使用文件上传的MultipartFile对象时,出现了以下的错误:


Could not instantiate bean class [org.springframework.web.multipart.MultipartFile]: Specified class

那么就在参数前加入: @RequestParam注解即可…

原因就是传过来的参数名称和我们在Controller参数的名称不一致!

原文地址:https://www.cnblogs.com/zhong-fucheng/p/7554336.html