码迷,mamicode.com
首页 > 编程语言 > 详细

spring国际化支持

时间:2014-11-03 22:42:07      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:spring   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的值



           

spring国际化支持

标签:spring   spring实现国际化   

原文地址:http://blog.csdn.net/u013516966/article/details/40746535

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!