Struts2中There is no Action mapped for namespace错误解决方法

Posted 在谷歌上百度

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2中There is no Action mapped for namespace错误解决方法相关的知识,希望对你有一定的参考价值。

1.我的原有配置

jsp表单提交路径

<form class="layui-form" id="form" action="${ctx }/membersLogin/membersLoginAction!membersLogin.action">
    ............
</form>

struts2拦截配置

    <package name="default" extends="struts-default" namespace="/membersLogin" strict-method-invocation="false">
        <action name="membersLoginAction" class="seventykg.web.MembersLoginAction">
            <result name="login_success">/index.jsp</result>
            <result name="login_fail">/login_fail.jsp</result>
        </action>
    </package>

2.按常理来说是没问题的

但是每次提交表单的时候报错如下:

There is no Action mapped for namespace。。。。。。。。。

3.百度搜了一下各种解决方法,都不是我想要的,无奈自己看了一下struts.xml配置文件,发现有一个地方叫:

 

    <!-- 是否开启动态方法调用 -->
    <constant name="struts.enable.DynamicMethodInvocation" value="true"/>

 

当这个value="false"的时候,是不支持(${ctx }/membersLogin/membersLoginAction!membersLogin.action)这样带有方法(membersLogin)的路径的,仅仅支持(${ctx }/membersLogin/membersLoginAction)这样的,方法的话需要写到配置文件中

<package name="default" extends="struts-default" namespace="/membersLogin" strict-method-invocation="false">
        <action name="membersLoginAction" class="membersLoginAction" method="membersLogin">
            <result name="login_success">/index.jsp</result>
            <result name="login_fail">/login_fail.jsp</result>
        </action>
</package>

改成true即可解决问题

QQ交流群4060038

以上是关于Struts2中There is no Action mapped for namespace错误解决方法的主要内容,如果未能解决你的问题,请参考以下文章

Struts2注解错误之There is no Action mapped for namespace /

问题管理-- Struts2配置struts.xml中Action访问报There is no Action mapped for namespace...

struts2中错误There is no Action mapped for namespace [/] and action name [] associated with context pat

Struts2-tomcat报错:There is no Action mapped for namespace / and action

解决 struts2 报"There is no Action mapped for namespace / and action name"的问题

Struts2异常:HTTP Status 404 - There is no Action mapped for action name addBook.