复习struts2之配置action范围国际化资源文件

为某个action单独指定资源文件,方法如下: 
在Action类所在的路径,放置ActionClassName_language_country.properties资源文件,ActionClassName为action类的简单名称。 
当查找指定key的消息时,系统会先从ActionClassName_language_country.properties资源文件查找,如果没有找到对应的key,然后沿着当前包往上查找基本名为package 的资源文件,一直找到最顶层包。如果还没有找到对应的key,最后会从常量(既全局的资源文件)struts.custom.i18n.resources指定的资源文件中寻找。 
实例:
struts.xml
		
	
		
			/WEB-INF/page/message.jsp
		

Action方法
public class ManageAction extends ActionSupport{
	@Override
	public String execute() throws Exception {
		ActionContext.getContext().put("message", this.getText("welcome",new String[]{"小明","玩"})) ;
		return "message";
	}
}
资源文件
ManageAction_zh_CN.properties
welcome= action:{0}\uFF0C\u6B22\u8FCE\u6765\u5230\u4F20\u667A\u64AD\u5BA2{1}
jsp页面message.jsp
${message}
访问路径:
http://localhost:8080/native/test/manage.action
浏览器输出结果:
action:小明,欢迎来到传智播客玩	

你可能感兴趣的:(struts2)