Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions features/resilience/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ https://youtu.be/CT1wGTwOfg0
### @Retryable with Exponential Backoff
```java
@Retryable(
maxAttempts = 4,
maxRetries = 4,
delay = 500,
multiplier = 2.0, // 500ms, 1s, 2s, 4s
maxDelay = 5000,
Expand All @@ -57,7 +57,7 @@ public String performHeavyOperation(String taskId) {
### Combined Patterns
```java
@ConcurrencyLimit(1)
@Retryable(maxAttempts = 2, delay = 1000)
@Retryable(maxRetries = 2, delay = 1000)
public String criticalOperation(String operationId) {
// Single-threaded execution with automatic retry
}
Expand All @@ -80,4 +80,4 @@ Unlike previous Spring Boot versions that required external libraries, **Spring
- Better integration with the Spring ecosystem
- Consistent configuration and behavior
- No version compatibility issues
- Enterprise-grade resilience out of the box
- Enterprise-grade resilience out of the box