使用Struts2时出现There is no Action mapped for namespace / and action name .
今天,在使用Struts2时,运行老是提示There is no Action mapped for namespace / and action name .根据提示,可以判定应该是该命名空间下不存在这样的action
但是,仔细查看之后配置是正确的
经过一一判断Struts.xml和web.xml发现,web.xml内容如下:
[html]
<?xml version="1.0" encoding="UTF-8"?> www.zzzyk.com
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>8.1</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
而在项目中,并不存在welcom-file-list下的这几个元素定义的页面,所以直接在Eclipse中运行项目之后,找不到页面,提示了错误
修改成相应的welcom-file后,运行正确
补充:Web开发 , Jsp ,