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());

ApplicationContext的国际化支持,布布扣,bubuko.com

ApplicationContext的国际化支持

上一篇:android 开发环境搭建


下一篇:WPF 界面布局DockPanel stackPanel WrapPanel 元素内容以及位置控制