2012-06-16 15:59:59 -03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-11-04 01:06:02 -03:00
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
2023-11-22 20:46:38 -08:00
|
|
|
http://www.springframework.org/schema/beans/spring-beans.xsd">
|
2012-11-04 18:17:32 -03:00
|
|
|
|
2012-07-13 21:07:51 -03:00
|
|
|
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
|
2022-04-11 14:36:28 -03:00
|
|
|
<property name="defaultEncoding" value="UTF-8"/>
|
2012-07-13 21:07:51 -03:00
|
|
|
<property name="basenames">
|
|
|
|
|
<list>
|
|
|
|
|
<value>messages</value>
|
|
|
|
|
</list>
|
|
|
|
|
</property>
|
|
|
|
|
</bean>
|
2012-06-16 15:59:59 -03:00
|
|
|
</beans>
|