关于使用感叹号!方式实现动态方法调用的疑问
按照老师的方法将struts.enable.DynamicMethodInvocation的value值设置为true时确实可以使用!来实现动态方法调用。我之后查看了下官网的文档,官网文档(在Wildcard Method标题段落末尾)是这样说的(文档地址)
If Wildcard Method mapping uses a "!" in the action name, the Wildcard Method will overlap with another flexible approach to mapping,Dynamic Method Invocation. To use action names that include the "!" character, set struts.enable.DynamicMethodInvocation to FALSE in the application configuration.
我应该怎么理解它说的将其设置为FALSE?设置FALSE是不能实现!动态方法调用。