`
rayln
  • 浏览: 415203 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

SpringMVC使用国际化步骤

 
阅读更多
mess.properties
welcome=welcome

mess_zh_CN.properties
welcome=欢迎

mess_en_US.properties
welcome=(US)welcome

applicationContext.xml
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
  <property name="basenames">
    <list><!-- 配置文件名 -->
      <value>mess</value>
    </list>
  </property>
</bean>


页面标签
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<spring:message code="welcome"/>

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics