上传图片时弹出Error on file upload.Error number:203

上传图片时弹出Error on file upload.Error number:203如附件 error.jpg的错误 原因:fck的servlet被struts2转发了 解决:在web.xml中修改filter-mapping 将 <filter><filter-name>struts2</filter-name><filter-class> org.apache.struts2.dispatcher.FilterDispatcher </filter-class></filter><filter-mapping><filter-name>struts2</filter-name><url-pattern>/*</url-pattern></filter-mapping> 修改成 <filter><filter-name>struts2</filter-name><filter-class> org.apache.struts2.dispatcher.FilterDispatcher </filter-class></filter><filter-mapping><filter-name>struts2</filter-name><url-pattern>*.do</url-pattern><url-pattern>*.jsp</url-pattern></filter-mapping>

你可能感兴趣的:(apache,jsp,Web,xml,servlet)