Spring Batch allows us to set retry strategies on tasks so that they are automatically repeated when there is an error. Here we see how to configure it.
Baeldung Author
Shubhra Srivastava
Shubhra is a software professional and founder of ProgrammerGirl. She has ample experience with Java/J2EE technologies and frameworks. She loves the amalgam of programming and coffee :)
Here's what I've written (so far):
Baeldung on Java
- All
- Java (7)
- Persistence (3)
- Spring Data (2)
- Spring (1)
- Logging (1)
- Java Array (1)
- JSON (1)
- Algorithms (1)
Sending Emails with Logback
Learn how to configure Logback for sending out an email notification for any application errors
The strictfp Keyword in Java
Filed under Java
Explore when and how to use the strictfp keyword in Java.
Convert Character Array to String in Java
Filed under Java Array
Explore different ways of converting a given character array to its String representation in Java.
Checking if a Java Graph Has a Cycle
Filed under Java
Learn how to check if a cycle exists in a given directed graph in Java.
JPA @Basic Annotation
Filed under Persistence
Learn when and how to use JPA’s @Basic annotation.
Case Insensitive Queries with Spring Data Repository
Filed under Spring Data
Learn how to create a case insensitive query in a Spring Data repository.
Hibernate Aggregate Functions
Filed under Persistence
Explore the aggregate functions available in Hibernate.
Differences Between ZonedDateTime and OffsetDateTime
Filed under Java
Explore the differences between the ZonedDateTime and the OffsetDateTime classes in Java
Pagination and Sorting using Spring Data JPA
Filed under Spring Data
Learn how to paginate and sort query results in Spring Data JPA.
Difference Between @JoinColumn and mappedBy
Filed under Persistence
Learn about the difference between @JoinColumn and mappedBy and how to use them in a one-to-many bidirectional relationship.
Get a Value by Key in a JSONArray
Filed under JSON
Learn how to parse a JSONArray to get all the mapped values for a given key.
Ternary Operator in Java
Filed under Java
Learn about the ternary operator ?:, which allows us to define conditional expressions in Java.
Check if Two Rectangles Overlap in Java
Filed under Algorithms, Java
Explore how to solve an algorithmic problem of finding whether the two given rectangles overlap with each other, using Java.
Add Hours to a Date in Java
Filed under Java
Learn several ways to add or subtract a given number of hours from a date in Java.