struts2.5框架使用通配符无效问题

Posted 流年如水~烟雨随风

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了struts2.5框架使用通配符无效问题相关的知识,希望对你有一定的参考价值。

错误:

Struts has detected an unhandled exception: 

Messages: There is no Action mapped for namespace [/person] and action name [update] associated with context path [/struts2_04]. 
 

  解决方法:

    不知道从哪个版本开始,action中添加了 allowed-methods 标签,所以要想让对应Action类中的方法能进行匹配,还需要在 allowed-methods 标签注册该方法才行,比如Action中有 saveUser 和 updateUser 方法,配置如下:

		<action name="*" class="com.shawn.action.UserAction" method="{1}User">
			<result name="success">/{1}User.jsp</result>
			<allowed-methods>saveUser,updateUser</allowed-methods>
		</action>

  

总结:struts 2.5 使用通配符调用方法时,内部会验证是否允许访问该方法,所以要加上

<allowed-methods>方法名1,方法名2…</allowed-methods>代码。

以上是关于struts2.5框架使用通配符无效问题的主要内容,如果未能解决你的问题,请参考以下文章

SSH框架Struts2.5之后遇到的坑 struts.xml不用通配符没问题,已改成通配符就报异常

struts2.5.2 通配符问题_亲测有用

struts2.5.5通配符问题

Struts2.5的DMI与新增的SMI

Struts2.5动态方法调用action和使用通配符访问action

Struts2 关于2.5的通配符问题