struts2 配置的问题 老是出错 又找不到原因 求高手讲解下
我刚开始学习struts2今天做了个简单的login.jsp的测试页面,老是出现404错误找不到响应的页面,我估计是配置问题但是花了几个小时,也参照网上的资料,还是成功不...
我刚开始学习struts2 今天做了个简单的login.jsp的测试页面,老是出现404错误找不到响应的页面,我估计是配置问题 但是花了几个小时,也参照网上的资料,还是成功不了,实在是没办法了,求各位指教一下:
login.jsp
......
<body>
<form action="login.action" method="post">
uesrname: <input type="text" name="username"> <br>
password: <input type="password" name="password"> <br>
<input type="submit" name="submit" value="提交">
</form>
</body>
......
result.jsp
......
<body>
username:${requestScope.username}
password:${requestScope.password}
</body>
......
相应的LoginAction // struts2 后的action 不用像struts1继承相应的类吗?
package com.test.action;
public class LoginAction {
......
}
配置struts.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="struts2" extends="struts-default">
<action name="login" class="com.test.action.LoginAction">
<result name="success">/result.jsp </result>
</action>
</package>
</struts>
web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<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>
</web-app>
我通过 http://127.0.0.1:8080/struts2/login.jsp 可以访问login.jsp 页面,点提交按钮后,出现404错误:The requested resource (/struts2/login.action) is not available. 请各位给我指教下我的配置有问题吗 ?另外请请有经验的高手给我点相关建议 谢谢谢谢
环境:jdk 1.6 tomcat 5.5 myeclipse 6.0
404 错误:The requested resource (/struts2/login.action) is not available. 展开
login.jsp
......
<body>
<form action="login.action" method="post">
uesrname: <input type="text" name="username"> <br>
password: <input type="password" name="password"> <br>
<input type="submit" name="submit" value="提交">
</form>
</body>
......
result.jsp
......
<body>
username:${requestScope.username}
password:${requestScope.password}
</body>
......
相应的LoginAction // struts2 后的action 不用像struts1继承相应的类吗?
package com.test.action;
public class LoginAction {
......
}
配置struts.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="struts2" extends="struts-default">
<action name="login" class="com.test.action.LoginAction">
<result name="success">/result.jsp </result>
</action>
</package>
</struts>
web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<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>
</web-app>
我通过 http://127.0.0.1:8080/struts2/login.jsp 可以访问login.jsp 页面,点提交按钮后,出现404错误:The requested resource (/struts2/login.action) is not available. 请各位给我指教下我的配置有问题吗 ?另外请请有经验的高手给我点相关建议 谢谢谢谢
环境:jdk 1.6 tomcat 5.5 myeclipse 6.0
404 错误:The requested resource (/struts2/login.action) is not available. 展开
1个回答
展开全部
Struts2的action的确是不需要继承什么父类的,它的参数解析等功能都是由Struts2的内置拦截器来完成的。
根据你的问题,可以初步确认是Struts2的配置文件的问题,配置文件写的没有错误,那么就是位置的问题了。
struts2的配置文件是放在WEB-INF/classes下的,确定你没有放错吗?如果用myeclipse开发的话,建立配置文件的时候应该建立在src下面,这样myeclipse build project的时候才会自动放到classes下。
另外,如果服务器启动的时候,你的项目有异常发生,则原因可能就是其他的了
根据你的问题,可以初步确认是Struts2的配置文件的问题,配置文件写的没有错误,那么就是位置的问题了。
struts2的配置文件是放在WEB-INF/classes下的,确定你没有放错吗?如果用myeclipse开发的话,建立配置文件的时候应该建立在src下面,这样myeclipse build project的时候才会自动放到classes下。
另外,如果服务器启动的时候,你的项目有异常发生,则原因可能就是其他的了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询