spring国际化支持
Spring对国际化的支持是beanFactory的子接口ApplicationContext所增加的新功能,主要是因为ApplicationContext接口继承了MessageSource接口,MessageSource接口的getMessage(String code,Object[] obj,Locale locale)方法用于对国际化的支持。
在Spring对国际化的支持中我们需要在应用上下文中配置:
<bean id="messageSource" class="org.springframework.context.support.RegourceBundleMessageSource">
<property name="basenames">
<list>
<value>message</value>//表示我们资源文件的basename为message,资源文件的默认路径是在src路径下, 如果我们想把资源文件放在test下,那么<value>test/message</value>
</list>
</property>
</bean>
建立资源文件message_zh_CN.properties hello=你好{0}
message_en_US.properties hello=hello{0}
我们就可以通过ApplicationContext ac=new ClassPathXmlApplicationContext(.....);
String hello=ac.getMessage("hello",new String[]{"hi"},Locale.getDefault(Category.FORMAT));
就可以获取该语言环境下的hello的值
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。