spring4筆記----spring4國際化

weixin_34037977發表於2017-03-04
<?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>

 

相關文章