struts2直接访问action方法为什么404

发布于 2021-11-16 00:30:44 字数 1418 浏览 781 评论 8

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

路还长,别太狂 2021-11-16 13:13:26

这种方式不是不用设method吗?

眼眸里的那抹悲凉 2021-11-16 13:13:26

现在没必要使用动态调用,使用通配符好点。。。

为啥找不到我咋知道啊,除非我看下项目,你试试这样配置一下吧。。。

<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>

最偏执的依靠 2021-11-16 13:13:26

你需要在你的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的方式,即通配符的方式。

彩扇题诗 2021-11-16 13:13:26

一群人在这里按照规范和常用命名习惯,你就不会出错了

猫九 2021-11-16 13:09:38

method

醉生梦死 2021-11-16 13:04:32

为什么找不到啊

贱贱哒 2021-11-16 12:59:24

找到页面呗

偏爱自由 2021-11-16 12:28:38

加个 .action 后缀试试看,要不直接 JFinal 吧: 
http://www.oschina.net/p/jfinal

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文