5a75178e1d4c8d3a2615fe50c0a72145f373f64e
[utils] / security / src / test / resources / spring / test.org.wamblee.security.datasource.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://www.springframework.org/schema/beans
5     http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
6
7     <!-- This is the Spring configuration to define the database-related stuff for the
8     all persistence tests.  -->
9     <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
10         <property name="driverClassName">
11             <value>${database.driver}</value>
12         </property>
13         <property name="url">
14             <value>${database.url}</value>
15         </property>
16         <property name="username">
17             <value>${database.username}</value>
18         </property>
19         <property name="password">
20             <value>${database.password}</value>
21         </property>
22     </bean>
23 </beans>