Salome HOME
Id now is Long instead of Integer. First unit test is created. hibernate-3.5.jar...
[tools/siman.git] / Workspace / Siman-Common / src / test / spring / ut-applicationContext.xml
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"
6     xsi:schemaLocation="
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">
13            
14            
15     <context:property-placeholder
16         location="classpath:test/siman.properties,classpath:test/jdbc.properties"
17         ignore-unresolvable="true" />
18         
19     <!-- configuration i18n -->
20     <bean id="i18nUtils"
21         class="org.splat.i18n.I18nUtils">
22         <property name="resourceBundleMessageSource"
23             ref="messageSource" />
24     </bean>
25
26     <bean id="messageSource"
27         class="org.springframework.context.support.ResourceBundleMessageSource">
28         <property name="basenames">
29             <list>
30                 <value>application</value>
31                 <value>log-messages</value>
32             </list>
33         </property>
34     </bean>
35     <!-- ref 'baseMessageSource' into Siman-common\src\spring\globalContext.xml -->
36     <!-- property name="parentMessageSource" ref="baseMessageSource"/-->
37 </beans>