问题描述:
在阅读李刚的《轻量级Java EE 企业应用实战--Struts2+Spring3+Hiberate》时调试书中的代码怎么也过不了,总是报如下错误:
警告: Could not find action or result
There is no Action mapped for namespace / and action name . - [unknown location]
at com.opensymphony.xwork2.DefaultActionProxy.prepare(DefaultActionProxy.java:189)
at org.apache.struts2.impl.StrutsActionProxy.prepare(StrutsActionProxy.java:61)
at org.apache.struts2.impl.StrutsActionProxyFactory.createActionProxy(StrutsActionProxyFactory.java:39)
真是不清楚李刚兄有没有调试过 ,还是故意给大家设置的陷阱。
解决办法:
修改web.xml,增加如下内容
<welcome-file-list>
<welcome-file>login.jsp </welcome-file>
</welcome-file-list>