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

为什么我登陆login.jsp界面后提交出现404


package com.tz.jsd1511.action;

import com.opensymphony.xwork2.ActionSupport;

public class LoginAction extends ActionSupport{
    private String username;
    private String password;
    
    
    
    public String execute(){
        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;
    }
    
    
}

----------------------------------------------------------------------------------------------

    <package name="another" namespace="/" extends="struts-default">
        <action name="redirectA" class="com.tz.jsd1511.action.Helloworld" method="execute">
            <result name="success" type="redirectAction"  >
                <param name="actionName">helloworld</param>
                <param name="namespace">/hello</param>
            </result>
        </action>
        
        
        <action name="login" class="com.tz.jsd1511.action.LoginAction" method="execute">
            <result>/jsp/success.jsp</result>
        </action>
        
        <action name="insertvalue" class="com.tz.jsd1511.action.InsertValue" method="execute">
            <param name="insert">/images</param>
            <result name="success">/jsp/insertvalue.jsp</result>
        </action>
    </package>
</struts>

正在回答

4 回答

过滤器 /* 

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

看看是不是后缀名没有改回.action

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

改完之后将Servers下的部署生成的文件删掉之后重新部署试一下

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

There is no Action mapped for namespace [/jsp] and action name [LoginAction] associated with context path [/Struts2_01]

改了半天没反应

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

举报

0/150
提交
取消

为什么我登陆login.jsp界面后提交出现404

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