动态方法调用就是为了解决一个Action对应多个请求的处理,以免Action太多。一般有以下三种方法,指定method属性,通配符方式,感叹号方式(官网不推荐)。这里要说的是后两种:
随着版本的升级,Struts2的Dynamic Method Invocation(DMI)特性也由Struts2.3的Strict DMI变为struts2.5的Strict Method Invocation(SMI)。在struts2.5中,SMI是默认打开的,strict-method-invocation的值默认为true。
通配符方式的实现
在使用新版本的Struts2.5时,Struts官网的文档建议使用最新的头部信息(如下):
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.5//EN" "[http://struts.apache.org/dtds/struts-2.5.dtd](http://struts.apache.org/dtds/struts-2.5.dtd)">
在struts2.5中,官方文档指出,SMI有以下三种工作方式:
<ol>
<li>加上<allowed-methods>标签或者添加<global-allowed-methods>标签</li>
<li>SMI打开,但是没有<allowed-methods>标签。SMI只在带<global-allowed-methods>标签中作用</li>
<li>SMI关闭,这个时候通过默认的通配符来调用任何的Action方法都被允许</li></ol>
注:SMI的开关在<package>中设置。如SMI的关闭设置方法:<package strict-method-invocation="false">…</package>
所以要使用上述三种方式都可以是实现通配符方式的动态调用。
感叹号!方式的实现
关于动态方法调用,自从Struts2.3之后DMI的就默认被约束了。只要没有被方法属性(包括通配符)和<allowe-methods>标签明确允许的方法,Struts都会拒绝。也就是说要使用DMI的话,需要将调用的方法加入<allowed-methods>标签中(多个方法用逗号分隔)并且将enable.DynamicMethodInvocation的值设置true"。如果有add和update两个方法则可这样写:
<allowed-methods>add,update</allowed-methods>
<constant name="enable.DynamicMethodInvocation" value="true"/>
constant标签放在package标签外,<allowed-methods>放在action标签内
参考文档:http://struts.apache.org/docs/action-configuration.html
ps:如果有什么不对的地方,欢迎指出~