ApplicationContext的国际化支持
ApplicationContext接口继承MessageSource接口,在Spring中配置messageSource Bean时通常使用ResourceBundleMessageSource类。
<bean id="messageSource"
class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basenames">
<list>
<value>message</value>
<!--如果有多个资源文件,全部列在此处-->
</list>
</property>
</bean>
主程序核心:
ApplicationContext ctx = new ClassPathXmlApplicationContext("bean.xml");
//使用getMessage方法获取本地化信息,Locale的getDefault方法
//返回计算机环境默认的Locale
String name = ctx.getMessage("资源文件属性名称", 数组名称,Locale.getDefault());
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。