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

使用通配符方式时,一直报404错误

struts.xml中的代码:

<struts>
    <package name="default" namespace="/" extends="struts-default" >
       <action name="Helloworld_*" method="{1}" class="com.imooc.action.Helloworld">
            <result>/result.jsp</result>
            <result name="a">/{1}.jsp</result>
            <result name="up">/{1}.jsp</result>
       </action>
    </package>
 </struts>

Action中的代码:

public class Helloworld extends ActionSupport {
	
	public String add(){
		return "add";
	}
	public String update(){
		return "update";
	}
	@Override
	public String execute() throws Exception {
		System.out.println("执行Action");
		return SUCCESS;
	}

}

输入:http://localhost:8080/HelloWord/Helloworld.action

正常运行,但是输入:http://localhost:8080/HelloWord/Helloworld_add.action

就报404错误,自己看了好久,感觉代码没啥毛病呀,就是运行 不出来

正在回答

1 回答

 <result name="a">/{1}.jsp</result>

那个你的{1}是add 他会执行add方法 但是你的返回是 add  result里面没有add 所有会报404  你把name=“a”修改成add 就好了。。或者return “a”

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

qq_阳光下的海风_0 提问者

非常感谢!
2017-09-04 回复 有任何疑惑可以回复我~
#2

qq_阳光下的海风_0 提问者

我明白了,也就是说,方法的返回值需要和<result/>中的name属性值一一对应。
2017-09-04 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

使用通配符方式时,一直报404错误

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