我正在尝试通过JSP文件中的表单上传文件,但出现此错误。该servlet已经具有@MultipartConfig表示法。我正在使用Servlet 3.0和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中的上下文标记上