Last active
December 13, 2015 19:08
-
-
Save rrajendran/4960742 to your computer and use it in GitHub Desktop.
Spring database context configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <beans xmlns="http://www.springframework.org/schema/beans" | |
| xmlns:batch="http://www.springframework.org/schema/batch" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" | |
| xmlns:tx="http://www.springframework.org/schema/tx" 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.2.xsd | |
| http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd | |
| http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd | |
| http://www.springframework.org/schema/batch http://www.springframework.org/schema/batch/spring-batch-2.1.xsd | |
| http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd | |
| http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"> | |
| <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> | |
| <property name="driverClassName" value="com.mysql.jdbc.Driver" /> | |
| <property name="url" value="jdbc:mysql://localhost:3306/demo" /> | |
| <property name="username" value="sa" /> | |
| <property name="password" value="" /> | |
| </bean> | |
| <jdbc:initialize-database data-source="dataSource"> | |
| <jdbc:script location="org/springframework/batch/core/schema-drop-mysql.sql" /> | |
| <jdbc:script location="org/springframework/batch/core/schema-mysql.sql" /> | |
| </jdbc:initialize-database> | |
| <bean id="transactionManager" | |
| class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> | |
| <property name="dataSource" ref="dataSource" /> | |
| </bean> | |
| </beans> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment