三类配置文件:
struts2默认加载类加载路径下的struts.xml、struts-default.xml和struts-plugin.xml文件,struts.xml是开发者定义的默认配置文件,struts-default.xml是Struts2框架自带的配置文件,struts-plugin.xml是Struts2插件的默认配置文件。
配置常量方式:
1.通过struts.properties文件
2.通过struts.xml配置文件
3.通过web.xml配置文件
struts.xml配置文件示例:
<constant name="struts.custom.i18n.resource" value="mess"/>
struts.custom.i18n.resource属性指定应用所需的国家化资源文件的baseName为mess
web.xml配置文件配置示例:
<init-param>
<param-name>struts.custom.i18n.resource</param-name>
<param-value>mess</param-value>
</init-param>
加载Struts2常量顺序:
1.struts-default.xml,该文件保存在struts-core-xxx.jar文件中
2.struts-plugin.xml,该文件保存在struts-xxx-plugin-xxx.jar等插件文件中
3.struts.xml,改文件是web应用默认的配置文件
4.struts.properties,该文件是Struts2默认的配置文件
5.web.xml:web应用的配置文件
如果Struts2中多个文件配置了同一个常量,则后一个文件会覆盖前面文件中的配置常量值,常量配置都需要制定name和value两个值
包含其他配置文件:
默认情况下,Struts2只自动加载类加载路径下的struts-default.xml、struts-plugin.xml和struts.xml文件,但随着应用规模增大,系统中Action数量增加,单个struts.xml文件会过于臃肿,为了避免这种情况,通过include手动导入配置文件,如下:
<include file="struts-part1.xml"></include>