VOOZH about

URL: https://www.baeldung.com/spring-batch-retry-logic

⇱ Configuring Retry Logic in Spring Batch | Baeldung


πŸ‘ Image
eBook – Guide Spring Cloud – NPI EA (cat=Spring Cloud)
πŸ‘ announcement - icon

Let's get started with a Microservice Architecture with Spring Cloud:

>> Join Pro and download the eBook

eBook – Mockito – NPI EA (tag = Mockito)
πŸ‘ announcement - icon

Mocking is an essential part of unit testing, and the Mockito library makes it easy to write clean and intuitive unit tests for your Java code.

Get started with mocking and improve your application tests using our Mockito guide:

Download the eBook

eBook – Java Concurrency – NPI EA (cat=Java Concurrency)
πŸ‘ announcement - icon

Handling concurrency in an application can be a tricky process with many potential pitfalls. A solid grasp of the fundamentals will go a long way to help minimize these issues.

Get started with understanding multi-threaded applications with our Java Concurrency guide:

>> Download the eBook

eBook – Reactive – NPI EA (cat=Reactive)
πŸ‘ announcement - icon

Spring 5 added support for reactive programming with the Spring WebFlux module, which has been improved upon ever since. Get started with the Reactor project basics and reactive programming in Spring Boot:

>> Join Pro and download the eBook

eBook – Java Streams – NPI EA (cat=Java Streams)
πŸ‘ announcement - icon

Since its introduction in Java 8, the Stream API has become a staple of Java development. The basic operations like iterating, filtering, mapping sequences of elements are deceptively simple to use.

But these can also be overused and fall into some common pitfalls.

To get a better understanding on how Streams work and how to combine them with other language features, check out our guide to Java Streams:

>> Join Pro and download the eBook

eBook – Jackson – NPI EA (cat=Jackson)
eBook – HTTP Client – NPI EA (cat=Http Client-Side)
πŸ‘ announcement - icon

Get the most out of the Apache HTTP Client

Download the E-book

eBook – Maven – NPI EA (cat = Maven)
πŸ‘ announcement - icon

Get Started with Apache Maven:

Download the E-book

eBook – Persistence – NPI EA (cat=Persistence)
πŸ‘ announcement - icon

Working on getting your persistence layer right with Spring?

Explore the eBook

eBook – RwS – NPI EA (cat=Spring MVC)
πŸ‘ announcement - icon

Building a REST API with Spring?

Download the E-book

Course – LS – NPI EA (cat=Jackson)
πŸ‘ announcement - icon

Get started with Spring and Spring Boot, through the Learn Spring course:

>> LEARN SPRING
Course – RWSB – NPI EA (cat=REST)
πŸ‘ announcement - icon

Explore Spring Boot 3 and Spring 6 in-depth through building a full REST API with the framework:

>> The New β€œREST With Spring Boot”

Course – LSS – NPI EA (cat=Spring Security)
πŸ‘ announcement - icon

Yes, Spring Security can be complex, from the more advanced functionality within the Core to the deep OAuth support in the framework.

I built the security material as two full courses - Core and OAuth, to get practical with these more complex scenarios. We explore when and how to use each feature and code through it on the backing project.

You can explore the course here:

>> Learn Spring Security

Course – LSD – NPI EA (tag=Spring Data JPA)
πŸ‘ announcement - icon

Spring Data JPA is a great way to handle the complexity of JPA with the powerful simplicity of Spring Boot.

Get started with Spring Data JPA through the guided reference course:

>> CHECK OUT THE COURSE

Partner – Moderne – NPI EA (cat=Spring Boot)
πŸ‘ announcement - icon

Refactor Java code safely β€” and automatically β€” with OpenRewrite.

Refactoring big codebases by hand is slow, risky, and easy to put off. That’s where OpenRewrite comes in. The open-source framework for large-scale, automated code transformations helps teams modernize safely and consistently.

Each month, the creators and maintainers of OpenRewrite at Moderne run live, hands-on training sessions β€” one for newcomers and one for experienced users. You’ll see how recipes work, how to apply them across projects, and how to modernize code with confidence.

Join the next session, bring your questions, and learn how to automate the kind of work that usually eats your sprint time.

Course – LJB – NPI EA (cat = Core Java)
πŸ‘ announcement - icon

Code your way through and build up a solid, practical foundation of Java:

>> Learn Java Basics

1. Overview

By default, a Spring batch job fails for any errors raised during its execution. However, at times, we may want to improve our application’s resiliency to deal with intermittent failures.

In this quick tutorial, we’ll explore how to configure retry logic in the Spring Batch framework.

2. An Example Use Case

Let’s say we have a batch job that reads an input CSV file:

username, userid, transaction_date, transaction_amount
sammy, 1234, 31/10/2015, 10000
john, 9999, 3/12/2015, 12321

Then, it processes each record by hitting a REST endpoint to fetch the user’s age and postCode attributes:

public class RetryItemProcessor implements ItemProcessor<Transaction, Transaction> {
 
 @Override
 public Transaction process(Transaction transaction) throws IOException {
 log.info("RetryItemProcessor, attempting to process: {}", transaction);
 HttpResponse response = fetchMoreUserDetails(transaction.getUserId());
 //parse user's age and postCode from response and update transaction
 ...
 return transaction;
 }
 ...
}

And finally, it generates a consolidated output XML:

<transactionRecord>
 <transactionRecord>
 <amount>10000.0</amount>
 <transactionDate>2015-10-31 00:00:00</transactionDate>
 <userId>1234</userId>
 <username>sammy</username>
 <age>10</age>
 <postCode>430222</postCode>
 </transactionRecord>
 ...
</transactionRecord>

3. Adding Retries to ItemProcessor

Now, what if the connection to the REST endpoint times out due to some network slowness? If so, our batch job will fail.

In such cases, we’d prefer the failed item processing to be retried a couple of times. And so, let’s configure our batch job to perform up to three retries in case of failures:

@Bean
public Step retryStep(
 ItemProcessor<Transaction, Transaction> processor,
 ItemWriter<Transaction> writer) throws ParseException {
 return stepBuilderFactory
 .get("retryStep")
 .<Transaction, Transaction>chunk(10)
 .reader(itemReader(inputCsv))
 .processor(processor)
 .writer(writer)
 .faultTolerant()
 .retryLimit(3)
 .retry(ConnectTimeoutException.class)
 .retry(DeadlockLoserDataAccessException.class)
 .build();
}

Here, we have a call to faultTolerant() for enabling the retry functionality. Additionally, we use retry and retryLimit to define the exceptions that qualify for a retry and the maximum retry count for an item, respectively.

4. Testing the Retries

Let’s have a test scenario where the REST endpoint returning age and postCode was down just for a while. In this test scenario, we’ll get a ConnectTimeoutException only for the first two API calls, and the third call will succeed:

@Test
public void whenEndpointFailsTwicePasses3rdTime_thenSuccess() throws Exception {
 FileSystemResource expectedResult = new FileSystemResource(EXPECTED_OUTPUT);
 FileSystemResource actualResult = new FileSystemResource(TEST_OUTPUT);

 when(httpResponse.getEntity())
 .thenReturn(new StringEntity("{ \"age\":10, \"postCode\":\"430222\" }"));
 
 //fails for first two calls and passes third time onwards
 when(httpClient.execute(any()))
 .thenThrow(new ConnectTimeoutException("Timeout count 1"))
 .thenThrow(new ConnectTimeoutException("Timeout count 2"))
 .thenReturn(httpResponse);

 JobExecution jobExecution = jobLauncherTestUtils
 .launchJob(defaultJobParameters());
 JobInstance actualJobInstance = jobExecution.getJobInstance();
 ExitStatus actualJobExitStatus = jobExecution.getExitStatus();

 assertThat(actualJobInstance.getJobName(), is("retryBatchJob"));
 assertThat(actualJobExitStatus.getExitCode(), is("COMPLETED"));
 AssertFile.assertFileEquals(expectedResult, actualResult);
}

Here, our job completed successfully. Additionally, it’s evident from the logs that the first record with id=1234 failed twice and finally succeeded on the third retry:

19:06:57.742 [main] INFO o.s.batch.core.job.SimpleStepHandler - Executing step: [retryStep]
19:06:57.758 [main] INFO o.b.batch.service.RetryItemProcessor - Attempting to process user with id=1234
19:06:57.758 [main] INFO o.b.batch.service.RetryItemProcessor - Attempting to process user with id=1234
19:06:57.758 [main] INFO o.b.batch.service.RetryItemProcessor - Attempting to process user with id=1234
19:06:57.758 [main] INFO o.b.batch.service.RetryItemProcessor - Attempting to process user with id=9999
19:06:57.773 [main] INFO o.s.batch.core.step.AbstractStep - Step: [retryStep] executed in 31ms

Similarly, let’s have another test case to see what happens when all retries are exhausted:

@Test
public void whenEndpointAlwaysFail_thenJobFails() throws Exception {
 when(httpClient.execute(any()))
 .thenThrow(new ConnectTimeoutException("Endpoint is down"));

 JobExecution jobExecution = jobLauncherTestUtils
 .launchJob(defaultJobParameters());
 JobInstance actualJobInstance = jobExecution.getJobInstance();
 ExitStatus actualJobExitStatus = jobExecution.getExitStatus();

 assertThat(actualJobInstance.getJobName(), is("retryBatchJob"));
 assertThat(actualJobExitStatus.getExitCode(), is("FAILED"));
 assertThat(actualJobExitStatus.getExitDescription(),
 containsString("org.apache.http.conn.ConnectTimeoutException"));
}

In this case, three retries were attempted for the first record before the job finally failed due to a ConnectTimeoutException.

5. Configuring Retries Using XML

Finally, let’s look at the XML equivalent of the above configurations:

<batch:job id="retryBatchJob">
 <batch:step id="retryStep">
 <batch:tasklet>
 <batch:chunk reader="itemReader" writer="itemWriter"
 processor="retryItemProcessor" commit-interval="10"
 retry-limit="3">
 <batch:retryable-exception-classes>
 <batch:include class="org.apache.http.conn.ConnectTimeoutException"/>
 <batch:include class="org.springframework.dao.DeadlockLoserDataAccessException"/>
 </batch:retryable-exception-classes>
 </batch:chunk>
 </batch:tasklet>
 </batch:step>
</batch:job>

6. Conclusion

In this article, we learned how to configure retry logic in Spring Batch. We looked at both Java and XML configurations.

We also used a unit test to see how the retries worked in practice.

The code backing this article is available on GitHub. Once you're logged in as a Baeldung Pro Member, start learning and coding on the project.
Baeldung Pro – NPI EA (cat = Baeldung)
πŸ‘ announcement - icon

Baeldung Pro comes with both absolutely No-Ads as well as finally with Dark Mode, for a clean learning experience:

>> Explore a clean Baeldung

Once the early-adopter seats are all used, the price will go up and stay at $33/year.

eBook – HTTP Client – NPI EA (cat=HTTP Client-Side)
πŸ‘ announcement - icon

The Apache HTTP Client is a very robust library, suitable for both simple and advanced use cases when testing HTTP endpoints. Check out our guide covering basic request and response handling, as well as security, cookies, timeouts, and more:

>> Download the eBook

eBook – Java Concurrency – NPI EA (cat=Java Concurrency)
πŸ‘ announcement - icon

Handling concurrency in an application can be a tricky process with many potential pitfalls. A solid grasp of the fundamentals will go a long way to help minimize these issues.

Get started with understanding multi-threaded applications with our Java Concurrency guide:

>> Download the eBook

eBook – Java Streams – NPI EA (cat=Java Streams)
πŸ‘ announcement - icon

Since its introduction in Java 8, the Stream API has become a staple of Java development. The basic operations like iterating, filtering, mapping sequences of elements are deceptively simple to use.

But these can also be overused and fall into some common pitfalls.

To get a better understanding on how Streams work and how to combine them with other language features, check out our guide to Java Streams:

>> Join Pro and download the eBook

eBook – Persistence – NPI EA (cat=Persistence)
πŸ‘ announcement - icon

Working on getting your persistence layer right with Spring?

Explore the eBook

Course – LS – NPI EA (cat=REST)

πŸ‘ announcement - icon

Get started with Spring Boot and with core Spring, through the Learn Spring course:

>> CHECK OUT THE COURSE

Partner – Moderne – NPI EA (tag=Refactoring)
πŸ‘ announcement - icon

Modern Java teams move fast β€” but codebases don’t always keep up. Frameworks change, dependencies drift, and tech debt builds until it starts to drag on delivery. OpenRewrite was built to fix that: an open-source refactoring engine that automates repetitive code changes while keeping developer intent intact.

The monthly training series, led by the creators and maintainers of OpenRewrite at Moderne, walks through real-world migrations and modernization patterns. Whether you’re new to recipes or ready to write your own, you’ll learn practical ways to refactor safely and at scale.

If you’ve ever wished refactoring felt as natural β€” and as fast β€” as writing code, this is a good place to start.

eBook Jackson – NPI EA – 3 (cat = Jackson)