欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springMVC 国际化

程序员文章站 2022-05-24 11:29:25
...

1、在spring配置文件中添加如下配置文件

 

<!-- 国际化 -->
<bean id="messageSource"
	class="org.springframework.context.support.ResourceBundleMessageSource">
	<property name="basename" value="message" />
</bean>
<bean id="localeResolver"
	class="org.springframework.web.servlet.i18n.CookieLocaleResolver" />

 

 

2、在src根目录下面新建下面两个文件

message_zh_CN.properties

hello=hello1\u4F60\u597D{0}

 

message_en_US.properties

hello=english{0}

 

3、在web目录下面新建一个jsp文件

在 页面中添加如下内容,(添加标签

 

<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>

 

 

备注:uri的内容在org.springframework.web.servlet-3.1.1.RELEASE.jar包下面的META-INF/spring.tld文件

页面的编码方式,应该选用utf-8 
<%@ page language="java"  pageEncoding="UTF-8"%> 

 

4、显示资源文件内的数据

<spring:message code="hello" arguments="111,222" argumentSeparator=",">

 

备注:arguments是用来给资源文件添加参数的,argumentSeparator是用来分割多个参数的标记 

 

5、页面显示内容

hello1你好111