2013-03-25 13:27:13 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2013-01-23 11:18:44 -05:00
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
2013-06-10 15:17:17 -04:00
|
|
|
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
|
2013-03-25 13:27:13 -05:00
|
|
|
http://www.springframework.org/schema/beans/spring-beans.xsd
|
|
|
|
http://www.springframework.org/schema/tx
|
|
|
|
http://www.springframework.org/schema/tx/spring-tx.xsd">
|
2013-01-23 11:18:44 -05:00
|
|
|
|
2013-06-10 15:17:17 -04:00
|
|
|
<bean
|
|
|
|
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
|
|
|
<property name="location">
|
|
|
|
<value>classpath:/unit-test-db-beans.properties</value>
|
2013-01-23 11:18:44 -05:00
|
|
|
</property>
|
|
|
|
</bean>
|
2013-06-10 15:17:17 -04:00
|
|
|
|
|
|
|
<import resource="classpath:/unit-test-db-session.xml" />
|
|
|
|
|
2013-01-23 11:18:44 -05:00
|
|
|
</beans>
|