spring4笔记----spring4国际化

<?xml version="1.0" encoding="GBK"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.springframework.org/schema/beans"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-4.3.xsd">

<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> 
   <property name="defaultEncoding" value="UTF-8"/>  
  <property name="basenames">
<list>
<value>message</value> //properties的名字
</list>
</property>
</bean>
</beans>

 

posted on 2017-03-04 14:24  Honey_Badger  阅读(1067)  评论(0编辑  收藏  举报

导航

github