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>
原文地址:https://www.cnblogs.com/tk55/p/6501307.html