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

SpringMVC实现国际化

时间:2014-12-21 09:15:37      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:springmvc   springmvc国际化   

  在这里通过案例说明:

     1. 在项目src向新建一个message文件夹,该文件夹下面有message_en_US.properties和message_zh_CN.properties两个属性文件,

       分别有welcome=welcome和welcome=欢迎

      2. 在applicationContext.xml中配置:

          <bean  id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
          <property name="basenames">
                  <list>
                    <value>message/message</value>
                  </list>
          </property>
          </bean>

 3. 在SpringMVC-servlet.xml中配置:

    <bean id="localeResolver" class="org.springframework.web.servlet.i18n.SessionLocaleResolver" />     
      <mvc:interceptors>  
       <bean class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor" />  
      </mvc:interceptors> 

4.在jsp页面中使用:<%@ taglib prefix="tags" uri="http://www.springframework.org/tags" %>


最后通过<tags:message code="welcome">访问得到

  

SpringMVC实现国际化

标签:springmvc   springmvc国际化   

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

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