struts2中通配符的使用及注意问题

如果要使用通配符,来实现动态方法调用,首先要在struts.xml中设置
struts.enable.DynamicMethodInvocation
的值为ture。如下:
<constant name="struts.enable.DynamicMethodInvocation" value="true" />

还可以在struts.properties中来设置这个值,代码为:
struts.enable.DynamicMethodInvocation = true

struts.properties这个文件就是struts2-core.jar下面的org.apache.struts2目录下的default.properties文件
其中在struts.xml里面设置的值会覆盖struts.properties里面相应属性的值

你可能感兴趣的:(struts2)