java.lang.ClassCastException: org.springframework.mock.web.MockHttpServletRequest cannot be cast to

 

1、关于spring MVC文件上传过程中报错

java.lang.ClassCastException: org.springframework.mock.web.MockHttpServletRequest cannot be cast to org.springframework.web.multipart.MultipartHttpServletRequest

或者

com.sun.proxy.$Proxy53 cannot be cast to org.springframework.web.multipart.MultipartHttpServletRequest

异常处理

 

报错源码

 

我的处理办法是:

MultipartHttpServletRequest multiRequest = new StandardMultipartHttpServletRequest(request,false);