<!-- 引入属性文件 -->
<!--加载config.properties文件-->
<context:property-placeholder location="classpath:config.properties" />
<!-- 国际化的消息资源文件 -->
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basenames">
<list>
<value>classpath:包名/包名/包名/包名/文件名(不要后缀)</value>
</list>
</property>
<!--defaultEncoding 默认编码是ISO-8859-1 这里设置为UTF-8-->
<property name="defaultEncoding" value="UTF-8"/>
<!--cacheSeconds 设置缓存文件加载性能的秒数 默认为-1-->
<property name="cacheSeconds" value="60"/>
</bean>
本文出自 “一直在爬坑” 博客,谢绝转载!
spring配置国际化的消息资源文件(.properties)
原文地址:http://19950603.blog.51cto.com/9921553/1616549