我正在尝试通过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();`
答案 0 :(得分:17)
我必须添加
allowCasualMultipartParsing="true"
on context.xml中的context标签