jobs.delegatingJob.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.
<?xml version="1.0" encoding="UTF-8" ?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p" 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 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"> <description> The intent is to to give an example of how existing bean definitions (e.g. from custom application's domain layer) can be integrated into a batch job. </description> <bean id="delegateJob" parent="simpleJob"> <property name="steps"> <bean id="step1" parent="simpleStep"> <property name="itemReader"> <bean class="org.springframework.batch.item.adapter.ItemReaderAdapter"> <property name="targetObject" ref="delegateObject" /> <property name="targetMethod" value="getData" /> </bean> </property> <property name="itemWriter"> <bean class="org.springframework.batch.item.adapter.PropertyExtractingDelegatingItemWriter"> <property name="targetObject" ref="delegateObject" /> <property name="targetMethod" value="processPerson" /> <property name="fieldsUsedAsTargetMethodArguments"> <list> <value>firstName</value> <value>address.city</value> </list> </property> </bean> </property> </bean> </property> </bean> <bean id="delegateObject" class="org.springframework.batch.sample.domain.person.PersonService" /> </beans>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy