struts.properties
文件中的任何Struts常量也可以在struts.xml
中指定吗?这将使我们能够使用环境变量
例如,属性文件中可以包含以下常量:
struts.ognl.logMissingProperties=true
struts.el.throwExceptionOnFailure=false
在struts.xml
中指定为以下内容?
<constant name="struts.ognl.logMissingProperties" value="${env.logmissing}"/>
<constant name="struts.el.throwExceptionOnFailure" value="${env.throwExc}"/>
答案 0 :(得分:0)
可以在struts.properties
中指定struts.xml
中的配置属性。如果您没有struts.xml
,则可以使用第一个文件来更改全局属性。
因此struts.properties
文件中的属性位于struts.xml
:
<constant name="struts.ognl.logMissingProperties" value="true"/>
<constant name="struts.el.throwExceptionOnFailure" value="false"/>