j2ee之struts2的国际化数据方式
和不用框架的时候一样,需要写你要改变的文字的配置文件(文件名_语言缩写_国家缩写.properties)
可以参考我之前写的j2ee之国际化数据方式
然后在struts.xml的配置文件中加入常量配置,如果不知道可以到源码的default.properties里面收索i18n关键字很快就可以找到
<struts> <constant name="struts.custom.i18n.resources" value="com.xinzhi.msg.msg"></constant> </struts>
最后在jsp页面中插入你写过的数据:关键代码:
<!-- 这是使用struts标签 --> <%@taglib uri="/struts-tags" prefix="s"%> <!-- 这是使用struts标签,调用配置文件中你写的要转换的文字 --> <s:text name="title"></s:text>