
mework.batch.spring-batch-samples.1.1.4.RELEASE.source-code.data-source-context-init.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-batch-samples
Show all versions of spring-batch-samples
Example batch jobs using Spring Batch Core and Execution.
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> <bean id="dataSourceInitializer" class="test.jdbc.datasource.InitializingDataSourceFactoryBean" autowire-candidate="false"> <property name="dataSource" ref="dataSource"/> <property name="initScripts"> <list> <value>${batch.schema.script}</value> <value>${batch.business.schema.script}</value> </list> </property> </bean> </beans>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy