struts2中通配符的使用及注意问题
程序员文章站
2023-12-24 08:10:27
...
如果要使用通配符,来实现动态方法调用,首先要在struts.xml中设置
还可以在struts.properties中来设置这个值,代码为:
struts.properties这个文件就是struts2-core.jar下面的org.apache.struts2目录下的default.properties文件
其中在struts.xml里面设置的值会覆盖struts.properties里面相应属性的值
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里面相应属性的值