I trying setup Spring Batch for robust execution of web-services call in my app. I using tasklets (not chunks).
This is fragment of my xml bean configuration for Spring Batch:
<batch:job id="payment" restartable="false"
job-repository="jobRepository">
<batch:step id="start" parent="startParentStep" next="status">
<batch:tasklet ref="tasklet"/>
</batch:step>
<batch:step id="status" parent="statusParentStep">
<batch:tasklet ref="tasklet" />
</batch:step>
</batch:job>
<bean id="tasklet" class="ru.app.core.TaskletImpl" />
<bean id="startParentStep" class="org.springframework.batch.core.step.item.FaultTolerantStepFactoryBean"
abstract="true">
<property name="backOffPolicy">
<bean class="org.springframework.batch.retry.backoff.FixedBackOffPolicy">
<property name="backOffPeriod" value="5000" />
</bean>
</property>
<property name="retryLimit" value="5" />
</bean>
<bean id="statusParentStep" class="org.springframework.batch.core.step.item.FaultTolerantStepFactoryBean"
abstract="true">
<property name="transactionManager" ref="transactionManager" />
<property name="jobRepository" ref="jobRepository" />
<property name="taskExecutor" ref="taskExecutor" />
<property name="retryLimit" value="30" />
<property name="retryableExceptionClasses">
<map>
<entry key="ru.app.exception.NoResultException"
value="true" />
</map>
</property>
<property name="backOffPolicy" ref="statusBackoffPolicy" />
</bean>
<bean id="statusBackoffPolicy"
class="org.springframework.batch.retry.backoff.ExponentialBackOffPolicy">
<property name="initialInterval" value="1000" />
<property name="multiplier" value="1.5" />
</bean>
The code seems good but it don't works. BackOffPolicy and retry settings ignored both while executing first and second steps. After recieving NoResultException in second stage batch stops in FAILED state.
I have last version of Spring Batch (2.1.8) and Spring (3.1.1). What's wrong? Maybe tasklet steps is a problem?
P.S. With aop:config and org.springframework.batch.retry.interceptor.RetryOperationsInterceptor this example works fine.