Files
wisemapping-open-source/wise-api/src/main/resources/spring/wisemapping-messages.xml

16 lines
611 B
XML
Raw Normal View History

<?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-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>
</beans>