Companion code for "Spring Framework 7's Built-in Resilience: @Retryable, @ConcurrencyLimit, and What's Left for Resilience4j". Every retry counted by recording real invocations: defaults, backoff and jitter, timeout, reactive and CompletableFuture returns, the concurrency limit's BLOCK and REJECT policies, retries around transactions, composition with Resilience4j 2.4.0, and the annotation API across 7.0.0-7.0.9. Co-Authored-By: Claude Opus 5 <[email protected]> Claude-Session: https://claude.ai/code/session_01C3TETMrqVUWeFkNtz3Jbo3
13 lines
466 B
Plaintext
13 lines
466 B
Plaintext
# GET /demo/tx/standalone (Spring Framework 7.0.9, Resilience4j 2.4.0, JDK 25)
|
|
# Source: src/main/java/com/ankurm/resilience/web/DemoController.java
|
|
|
|
{
|
|
"caller got": "success",
|
|
"attempts": [
|
|
"attempt 1: transaction active=true, connection holder @6aa73704",
|
|
"attempt 2: transaction active=true, connection holder @1978b580",
|
|
"attempt 3: transaction active=true, connection holder @7d5534c2"
|
|
],
|
|
"rows in stock_movement": 1
|
|
}
|