spring的国际化可以自动切换多国语言吗

 我来答
qi...3@163.com
2016-12-16 · 超过208用户采纳过TA的回答
知道小有建树答主
回答量:637
采纳率:0%
帮助的人:257万
展开全部
1.在spring配置文件中配置资源文件properties的位置及公共名,下列配置指定的properties文件处于src目录下的resources文件夹中,名字为message_info_*.properties。
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<propertyname="basenames">
<list>
<value>resources/message_info</value>
</list>
</property>
<propertyname="useCodeAsDefaultMessage"value="true"/><!-- Set whether to usethe message code as default message instead of throwing aNoSuchMessageException. Useful for development anddebugging. -->
</bean>
2.在spring配置文件中配置基于session的处理,将提交上来的locale参数进行处理,下列代码默认加载的语言是中文简体。
<bean id="localeResolver"class="org.springframework.web.servlet.i18n.SessionLocaleResolver">
<propertyname="defaultLocale"value="zh_CN"></property>
</bean>

3.在spring配置文件中的controller内配置相应的拦截器。
<beanid="className"
class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping">
<propertyname="interceptors">
<list>
<beanclass="org.springframework.web.servlet.i18n.LocaleChangeInterceptor"/>
</list>
</property>
</bean>
4.相应的properties文件内写入对应的语言,配置文件的语言信息以keyvalue的形式进行存储。
5.利用jstl的fmt标签库进行相应数据的国际化。
1)导入相应的fmt标签库<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
2)需要国际化处写入<fmt:messagekey="title"></fmt:message>标签,此处将显示相应properties文件中名为title的信息。
3)页面上写成三个连接用于控制国际化的转换
<ahref="/CloudPortal/staff/goindex.do?locale=zh_CN">Chinese</a>//message_info_zh_CN.properties
<ahref="/CloudPortal/staff/goindex.do?locale=en_US">English</a>//message_info_en_US.properties
<ahref="/CloudPortal/staff/goindex.do?locale=zh_TW">Chinese(TW)</a>//message_info_zh_TW.properties
locale内部固定的参数用于判断读取请求的配置文件。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式