为了账号安全,请及时绑定邮箱和手机立即绑定

请问,这错误找不到了

出现这样错误

HTTP Status 404 - There is no Action mapped for namespace / and action name LoginAction.

type Status report

message There is no Action mapped for namespace / and action name LoginAction.

description The requested resource (There is no Action mapped for namespace / and action name LoginAction.) is not available.


代码:

<form action="LoginAction.action" method="post">

  用户名:<input type="text" name="username">

  密码:<input type="password" name="password"> 

  <input type="submit" value="提交"/>

  </form>



<package name="default" extends="struts-default">

<action name="LoginAction" method="login"  class="com.xaccp.Action.LoginAction">

<result>/success.jsp</result>

</action>

</package>



public class LoginAction extends ActionSupport {

private String username;

private String password;

public String login(){

System.out.println(username);

return SUCCESS;

}

public String getUsername() {

return username;

}

public void setUsername(String username) {

this.username = username;

}

public String getPassword() {

return password;

}

public void setPassword(String password) {

this.password = password;

}

}



求解

正在回答

3 回答

<form action="LoginAction.action" method="post">是这里action后的路径写错了吧

0 回复 有任何疑惑可以回复我~
#1

努力GOGO 提问者

是去掉 还是改成Action
2016-01-02 回复 有任何疑惑可以回复我~
#2

努力GOGO 提问者

都试了 不行。
2016-01-02 回复 有任何疑惑可以回复我~
#3

产品经理不是经理 回复 努力GOGO 提问者

你这样写试试,acton="/LoginAction.action"
2016-01-02 回复 有任何疑惑可以回复我~
#4

努力GOGO 提问者 回复 产品经理不是经理

没报错 但是页面空白什么都没有
2016-01-02 回复 有任何疑惑可以回复我~
查看1条回复

谢谢大家,我找出来了 没写<include file="helloworld.xml"></include>这句话

0 回复 有任何疑惑可以回复我~

警告: Could not find action or result

There is no Action mapped for namespace / and action name LoginAction. - [unknown location]

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请问,这错误找不到了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信