Amend: Rebase on newest development commits Change-Id: I70fcf39d4c819e961921496c9a8f9097981b1de7 Former-commit-id:3adc0f3bd9
[formerly 78bfd27bf513a4014c957a069432e8a05d519004] Former-commit-id:457710f5d4
22 lines
No EOL
994 B
XML
22 lines
No EOL
994 B
XML
<?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 -->
|
|
|
|
<bean
|
|
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
|
<property name="location">
|
|
<value>classpath:/unit-test-db-beans2.properties</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<import resource="classpath:/unit-test-db-session.xml" />
|
|
|
|
</beans> |