今天做了个SSH整合的东西,结果一上来就不能跳action,找了老半天无结果,求教:
这是我的login.jsp页面:<formaction="login!loginIndex.action"id="myform"method="post"><divali...
这是我的login.jsp页面:
<form action="login!loginIndex.action" id="myform" method="post">
<div align="center" id="divcss">
<table align="center">
<tr>
<td align="right">用户名:</td>
<td align="left"><input type="text" name="user.trueName" value="123"/> </td>
<td></td>
</tr>
<tr>
<td align="right">密码:</td>
<td align="left"><input type="password" name="user.passWord" value="123"/></td>
<td></td>
</tr>
<tr align="center">
<td colspan="3"><input type="submit" value="登陆"/> <input type="reset" value="取消"> </td>
</tr>
</table>
</div>
</form>
这个是我的struts.xml配置:
<struts>
<package name="default" extends="struts-default">
<action name="login" class="loginAction">
<result name="success">/index.jsp</result>
<result name="input">/login.jsp</result>
</action>
</package>
</struts>
这个是我要进入的action方法:
public String loginIndex()throws Exception{
System.out.println("打印");
return SUCCESS;
这个是我的web.xml的配置:
<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>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.action</url-pattern>
</filter-mapping>
from表单提交后异常:
HTTP Status 404 - There is no Action mapped for namespace / and action name login. 展开
<form action="login!loginIndex.action" id="myform" method="post">
<div align="center" id="divcss">
<table align="center">
<tr>
<td align="right">用户名:</td>
<td align="left"><input type="text" name="user.trueName" value="123"/> </td>
<td></td>
</tr>
<tr>
<td align="right">密码:</td>
<td align="left"><input type="password" name="user.passWord" value="123"/></td>
<td></td>
</tr>
<tr align="center">
<td colspan="3"><input type="submit" value="登陆"/> <input type="reset" value="取消"> </td>
</tr>
</table>
</div>
</form>
这个是我的struts.xml配置:
<struts>
<package name="default" extends="struts-default">
<action name="login" class="loginAction">
<result name="success">/index.jsp</result>
<result name="input">/login.jsp</result>
</action>
</package>
</struts>
这个是我要进入的action方法:
public String loginIndex()throws Exception{
System.out.println("打印");
return SUCCESS;
这个是我的web.xml的配置:
<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>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.action</url-pattern>
</filter-mapping>
from表单提交后异常:
HTTP Status 404 - There is no Action mapped for namespace / and action name login. 展开
4个回答
展开全部
1看下struts.xm文件是不是没放在src下面
2看下action配置有没配置错误
2看下action配置有没配置错误
追问
我看了很多action的配置,我也以为配的有问题,就把别人配好的拿过来改下,结果还是不中;
额,那个struts.xml必须要放在src下么?我在src下又建了个包com,我把struts.xml放在了com里,这样就必定导致访问不到么?
追答
嗯 项目部署后struts.xml 放入\WebRoot\WEB-INF\classes目录下面,
如果放入com下面就变成\WebRoot\WEB-INF\classes\com那么tomcat就找不到struts.xml了
展开全部
这里 的class <action name="login" class="loginAction">
你的spring的xml中有 loginAction 这个bean吗?
没有spring注入的话 就要写全名 包括包名
你的spring的xml中有 loginAction 这个bean吗?
没有spring注入的话 就要写全名 包括包名
追问
恩,我注入了!谢谢。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<form action="login!loginIndex.action" id="myform" method="post">-----action="login!loginIndex.action"
<action name="login" class="loginAction">----class="loginAction"
<action name="login" class="loginAction">----class="loginAction"
追问
这个我已经注入了:
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
同楼上,要在spring配置文件里注入,或者直接在类里写注解进行注入
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询