首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

怎么在spring中实现国际化

2012-10-10 
如何在spring中实现国际化??在applicationContext.xml加载一个beanbean id”messageSource” class”org.s

如何在spring中实现国际化?
?在applicationContext.xml加载一个bean
<bean id=”messageSource” class=”org.springframework.context.support.ResourceBundleMessageSource”>
??<property name=”basename”>
???<value>message</value>
??</property>
</bean>
??在src目录下建多个properties文件
??对于非英文的要用native2ascii -encoding gb2312 源? 目转化文件相关内容
??其命名格式是message_语言_国家。
??页面中的中显示提示信息,键名取键值。
??当给定国家,系统会自动加载对应的国家的properties信息。
??通过applictionContext.getMessage(“键名”,”参数”,”区域”)取出相关的信息。

热点排行