
mework.batch.spring-batch-samples.1.1.4.RELEASE.source-code.alt-data-source-context.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" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd"> <bean id="dataSource" class="org.springframework.jdbc.datasource.IsolationLevelDataSourceAdapter"> <property name="targetDataSource"> <bean class="test.jdbc.datasource.DerbyDataSourceFactoryBean" /> </property> <!-- Keep the isolation level low so that a cursor in an ItemReader will not lock the table --> <property name="isolationLevelName" value="ISOLATION_READ_COMMITTED" /> </bean> <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" value="classpath:alt.properties" /> <property name="ignoreUnresolvablePlaceholders" value="false" /> <property name="order" value="0" /> </bean> </beans>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy