首页 > 代码库 > struts2.5新配置动态调用

struts2.5新配置动态调用

开启动态调用:

<constant name="struts.enable.DynamicMethodInvocation" value="http://www.mamicode.com/true"/> 

action标签method属性开启{1}:

strict-method-invocation="false"

开启全局动态方法调用通配符:

<global-allowed-methods>*</global-allowed-methods>

开启局部动态方法调用通配符:

<allowed-methods>*</allowed-methods>

struts2.5新配置动态调用