struts2直接访问action方法为什么404
index页面:
<jsp:forward page="book!selectAll"></jsp:forward>
struts.xml:
<package name="default" namespace="/" extends="struts-default">
<action name="book" class="com.action.BookAction">
<result name="index">index.jsp</result>
<result name="book">book.jsp</result>
<result name="gouwu">gouwu.jsp</result>
</action>
</package>
action类:
public String selectAll(){
List<Books> list=b.selectBooksAll();
Map<String,Object> session=ActionContext.getContext().getSession();
if(list!=null){
session.put("list", list);
}
return "index";
}
错误信息:
HTTP Status 404 - /strutsbook/book!selectAll
type Status report
message /strutsbook/book!selectAll
description The requested resource (/strutsbook/book!selectAll) is not available.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
这种方式不是不用设method吗?
现在没必要使用动态调用,使用通配符好点。。。
为啥找不到我咋知道啊,除非我看下项目,你试试这样配置一下吧。。。
<package name="default" extends="struts-default">
<action name="book_*" class="com.action.BookAction" method="{1}">
<result name="index">index.jsp</result>
<result name="book">book.jsp</result>
<result name="gouwu">gouwu.jsp</result>
</action>
</package>
你需要在你的struts.xml中,添加:
<constant name="struts.enable.DynamicMethodInvocation" value="true" />
才能使用 ! 这种动态的方法调用。
但是,在struts2的官方文档中,提到如下的安全隐患:
For Struts 2, we added a switch to disable DMI for two reasons. First, DMI can cause security issues if POJO actions are used. Second, DMI overlaps with the Wildcard Method feature that we brought over from Struts 1 (and from Cocoon before that). If you have security concerns, or would like to use the "!" character with Wildcard Method actions, then set struts.enable.DynamicMethodInvocation to FALSE in the application configuration.
所以,现在一般都使用Wildcard Method的方式,即通配符的方式。
一群人在这里按照规范和常用命名习惯,你就不会出错了
method
为什么找不到啊
找到页面呗
加个 .action 后缀试试看,要不直接 JFinal 吧:
http://www.oschina.net/p/jfinal