2013-02-27 13:06:53 -06:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
|
|
|
|
xmlns:tx="http://www.springframework.org/schema/tx"
|
|
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
|
|
http://www.springframework.org/schema/beans/spring-beans.xsd
|
|
|
|
http://www.springframework.org/schema/tx
|
|
|
|
http://www.springframework.org/schema/tx/spring-tx.xsd">
|
|
|
|
|
|
|
|
<!-- Used in the case where a second in-memory database needs to be started
|
|
|
|
in the same unit test -->
|
|
|
|
|
2013-04-18 13:37:07 -05:00
|
|
|
<bean
|
|
|
|
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
|
|
|
<property name="location">
|
|
|
|
<value>classpath:/unit-test-db-beans2.properties</value>
|
|
|
|
</property>
|
2013-02-27 13:06:53 -06:00
|
|
|
</bean>
|
|
|
|
|
|
|
|
<import resource="classpath:/unit-test-db-session.xml" />
|
|
|
|
|
|
|
|
</beans>
|