码迷,mamicode.com
首页 > 编程语言 > 详细

spring配置国际化的消息资源文件(.properties)

时间:2015-03-02 19:24:26      阅读:940      评论:0      收藏:0      [点我收藏+]

标签:spring   资源   

<!-- 引入属性文件 -->

        <!--加载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)

标签:spring   资源   

原文地址:http://19950603.blog.51cto.com/9921553/1616549

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!