DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Spring Batch Job Repository Configuration For Oracle And JBoss
<bean id="jobRepository" class="org.springframework.batch.core.repository.support.JobRepositoryFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="transactionManager" ref="jobTransactionManager" />
<property name="isolationLevelForCreate" value="ISOLATION_READ_COMMITTED" />
<property name="lobHandler">
<bean class="org.springframework.jdbc.support.lob.OracleLobHandler">
<property name="nativeJdbcExtractor">
<bean class="org.springframework.jdbc.support.nativejdbc.JBossNativeJdbcExtractor"/>
</property>
</bean>
</property>
</bean>





