参见英文答案 >
How to upload files to server using JSP/Servlet?12个
我试图通过JSP文件中的表单上传文件,但我收到此错误. servlet已经有@MultipartConfig表示法.我正在使用servlet 3.0和apache tomcat 8.
我试图通过JSP文件中的表单上传文件,但我收到此错误. servlet已经有@MultipartConfig表示法.我正在使用servlet 3.0和apache tomcat 8.
错误信息:
java.lang.IllegalStateException: Unable to process parts as no multi-part configuration has been provided
在线
Collection<Part> parts = request.getParts();`
解决方法
我不得不补充一下
allowCasualMultipartParsing="true"
在context.xml中的context标签上