描述:
JSP ueditor
struts 文件上传 失败 无法上传
描述:使用ueditor
发现无法进行文件上传,通过分析java源码发现问题在于Uploader类中使用的getItemIterator拿到的FileItemIterator实例是空的。
原因:struts对request进行了封装
解决方案:struts.xml中配置<constant name="struts.action.excludePattern" value="/ueditor/.*" />,使得该文件夹中的request不经过struts处理(因为fileUp.jsp等jsp在该文件夹中),从而解决问题。
参考资料:http://bangqu.com/leida/blog/65,非常感谢该博主!