applicationresources.properties配置如下:
label.username=lisi
applicationresourcesB.properties配置如下:
label.username=zhangsan
struts-config.xml配置如下:
<message-resources parameter="com.yourcompany.struts.ApplicationResources" />
<message-resources parameter="com.yourcompany.struts.ApplicationResourcesB" key="resourceB" />
页面测试代码如下:
<bean:message key="label.username"/>
<bean:message key="label.userna" bundle="resourceB"/>
这样的显示的结果,分别为lisi,zhangsan
很简单,需要注意一点,struts-config.xml第二个资料文件必须指定key值.页面要用bundle属性来指定key的值.
这样就会对应的找到配置的文件.