struts常规配置介绍

三类配置文件:
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>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值