摘要:
参考:http://www.cnblogs.com/S-E-P/archive/2012/01/18/2325253.html这篇文章说的关键就是“除了导入Struts2和Spring的核心库之外,还要导入commons-logging和struts2-spring-plugin包,否则启动会出异常... 阅读全文
摘要:
文件结构:/build/classes/d914/Hello.class/build/classes/d914/mess.properties/build/classes/d914/mess_zh_CN.properties/build/classes/d914/mess_en_US.propert... 阅读全文
摘要:
struts.xml中写的是authorityInterceptor/xxx.jsp但是实际的文件结构是/authorityInteceptor/xxx.jspstruts2就报了404,所以遇到struts2报404的时候注意检查一下是不是这个问题 阅读全文
摘要:
struts2/WEB-INF/web.xml blk struts2 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter struts... 阅读全文
摘要:
方法:MultipartParser mp = new MultipartParser(request, 10*1024*1024); mp.setEncoding("GBK"); //加上这行代码即可示例:upload.htmlenctype属性测试上传文件: 请求参数 cosUpload.j... 阅读全文
摘要:
eclipse在buildporject的时候会自动将properties文件拷贝到/build下的相应的package中 阅读全文
摘要:
如果你在一个项目中使用了struts2,也就是说,你在web.xml中配置了如下代码: struts2 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter ... 阅读全文
摘要:
这是因为你给Cookie设置了中文的value,比如Cookie c = new Cookie("user", "张三"); 阅读全文
摘要:
在一个tomcat中部署了一个struts-1.3.10的web项目,但是没有吧struts-1.3.10的lib中的jar包放进tomcat/lib中,所以导致了这个错误(访问该项目的页面时) 阅读全文
摘要:
比如说,只要jsp的代码里有或者之类的struts标签就会在访问该jsp页面的时候报这个错最后参考这篇文章,发现原来是因为web.xml中没有配置actionServlet(而且必须添加上参数才行!)参考文章http://perfectplan.iteye.com/blog/1565138strut... 阅读全文