先是web工程部署之后访问不了,连欢迎页面都是404.
后来改了server的配置文件web.xml,把init-param中的debug改为1,解决了这个问题。
后来到struts的action访问不了。
增加commons-lang3这个包后解决了这个问题。
后来改了server的配置文件web.xml,把init-param中的debug改为1,解决了这个问题。
后来到struts的action访问不了。
增加commons-lang3这个包后解决了这个问题。
2017-11-08
十月 26, 2017 3:34:57 下午 com.opensymphony.xwork2.util.logging.commons.CommonsLogger warn
警告: Could not find action or result
There is no Action mapped for namespace / and action name login. - [unknown location]
一直报这个错
警告: Could not find action or result
There is no Action mapped for namespace / and action name login. - [unknown location]
一直报这个错
2017-10-26
struts.properties里的具体设置可以参考之前下载好的struts下面的docs/docs/strutsproperties.html里面都有。不过全英文的,看着有点蛋疼
2017-10-23
我用得struts2.5.13。配置filter是<filter-class>
org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter
</filter-class>然后jar包记得导入一个log4j-api.jar,我之前没导入这个包,一直启动不了tomcat,加了之后就好了
org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter
</filter-class>然后jar包记得导入一个log4j-api.jar,我之前没导入这个包,一直启动不了tomcat,加了之后就好了
2017-10-23