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:context="http://www.springframework.org/schema/context"
|
5
|
xmlns:tx="http://www.springframework.org/schema/tx"
|
6
|
xmlns:aop="http://www.springframework.org/schema/aop"
|
7
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
8
|
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
|
9
|
http://www.springframework.org/schema/context
|
10
|
http://www.springframework.org/schema/context/spring-context-4.0.xsd
|
11
|
http://www.springframework.org/schema/tx
|
12
|
http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
|
13
|
http://www.springframework.org/schema/aop
|
14
|
http://www.springframework.org/schema/aop/spring-aop-4.0.xsd">
|
15
|
|
16
|
<context:spring-configured/>
|
17
|
<context:annotation-config/>
|
18
|
|
19
|
<bean class="eu.etaxonomy.cdm.model.name.ZoologicalName" scope="prototype">
|
20
|
<property name="cacheStrategy">
|
21
|
<bean class="eu.etaxonomy.cdm.persistence.dao.hibernate.name.TestingZoologicalNameCacheStrategy"/>
|
22
|
</property>
|
23
|
</bean>
|
24
|
|
25
|
<bean class="eu.etaxonomy.cdm.model.name.BotanicalName" scope="prototype">
|
26
|
<property name="cacheStrategy">
|
27
|
<bean class="eu.etaxonomy.cdm.persistence.dao.hibernate.name.TestingBotanicalNameCacheStrategy"/>
|
28
|
</property>
|
29
|
</bean>
|
30
|
|
31
|
<import resource="classpath:/eu/etaxonomy/cdm/applicationContext-test.xml" />
|
32
|
|
33
|
</beans>
|