SPR-7604 - Support multiple embedded databases.

Added missing test configuration file.
This commit is contained in:
Oliver Gierke 2010-10-08 12:40:06 +00:00
parent 00984781af
commit 1c6e131746
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
<?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:jdbc="http://www.springframework.org/schema/jdbc"
xsi:schemaLocation="http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<jdbc:embedded-database id="firstDataSource" />
<jdbc:embedded-database id="secondDataSource" />
</beans>