配置Message Resources的两种方式:
1.在web.xml中配
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>
org.apache.struts.action.ActionServlet
</servlet-class>
<init-param>
<param-value>
com.hunau.liuyong.struts.ApplicationResources
</param-value>
</init-param>
</servlet>
2.在struts-confg.xml中
<message-resources parameter="com.hunau.liuyong.struts.ApplicationResources"/>
如果要在资源文件中定义一个动态的内容,像“hello:月芽儿”
可以如下:
message.hello=hello:{0}
在页面引用时传一个参数给它就OK
<bean:message key="message.hello" arg0="月芽儿"/>
如果不止一个参数就{1}{2}对应arg1 arg2