Browse Source

SPR-7604 - Support multiple embedded databases.

Added missing test configuration file.

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@3716 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Oliver Gierke 16 years ago
parent
commit
a54c4bd0cf
  1. 11
      org.springframework.jdbc/src/test/resources/org/springframework/jdbc/config/jdbc-config-multiple-datasources.xml

11
org.springframework.jdbc/src/test/resources/org/springframework/jdbc/config/jdbc-config-multiple-datasources.xml

@ -0,0 +1,11 @@ @@ -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>
Loading…
Cancel
Save