1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xmlns:aop="http://www.springframework.org/schema/aop"
5 xmlns:context="http://www.springframework.org/schema/context"
7 http://www.springframework.org/schema/beans
8 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
9 http://www.springframework.org/schema/aop
10 http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
11 http://www.springframework.org/schema/context
12 http://www.springframework.org/schema/context/spring-context-3.0.xsd">
15 <context:property-placeholder
16 location="classpath:test/siman.properties,classpath:test/jdbc.properties"
17 ignore-unresolvable="true" />
19 <!-- configuration i18n -->
21 class="org.splat.i18n.I18nUtils">
22 <property name="resourceBundleMessageSource"
23 ref="messageSource" />
26 <bean id="messageSource"
27 class="org.springframework.context.support.ResourceBundleMessageSource">
28 <property name="basenames">
30 <value>test/som</value>
31 <value>test/labels</value>
32 <value>conf/log-messages</value>
36 <!-- ref 'baseMessageSource' into Siman-common\src\spring\globalContext.xml -->
37 <!-- property name="parentMessageSource" ref="baseMessageSource"/-->