struts2常量配置的方式

struts.xml:(一般处于开发模式应,配置常量为开发模式更方便)

<constant name="struts.devMode" value="true"/>
<constant name="struts.custom.i18n.resources" value="en"/>	
指定了国际化资源文件的baseName为en

web.xml

<?xml version="1.0" encoding="GBK">
<web-app ... version="3.0">
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
<init-param>
<param-name>struts.custom.i18n.resources</param-name>
<param-value>mess</param-value>
</init-param>
</filter>
....
</web-app>


你可能感兴趣的:(struts)