Tag

Retryable

0 views collected around this technical thread.

Cognitive Technology Team
Cognitive Technology Team
Apr 19, 2025 · Backend Development

Concurrency Risks of Object Escape in Spring AOP and Correct Advice Ordering

The article explains how Spring AOP can cause object escape leading to concurrency safety problems, describes the impact of asynchronous threads and caching, and provides practical guidance on ordering AOP advices such as distributed lock, @Retryable, and dynamic datasource to avoid business anomalies.

AOPDistributed LockObject Escape
0 likes · 5 min read
Concurrency Risks of Object Escape in Spring AOP and Correct Advice Ordering
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Feb 6, 2024 · Backend Development

Master Spring Retry: Annotation & Programmatic Retries in SpringBoot 2.7

This tutorial explains how to use Spring Retry in a SpringBoot 2.7 application, covering both annotation‑based @Retryable usage and programmatic RetryTemplate configuration, with complete code examples, listener implementation, and execution results.

Backend DevelopmentJavaRetryable
0 likes · 9 min read
Master Spring Retry: Annotation & Programmatic Retries in SpringBoot 2.7
macrozheng
macrozheng
Apr 23, 2023 · Backend Development

Master Spring Retry: Using @Retryable and @Recover for Robust Backend Retries

This guide explains how to use Spring Retry’s @Retryable and @Recover annotations in Spring Boot, covering dependency setup, enabling retries, annotating methods, configuring backoff policies, handling exhausted retries, and important precautions for reliable backend retry mechanisms.

@RecoverJavaRetry Logic
0 likes · 7 min read
Master Spring Retry: Using @Retryable and @Recover for Robust Backend Retries
macrozheng
macrozheng
Apr 12, 2022 · Backend Development

Mastering Spring Retry: How @Retryable Simplifies Robust Backend Calls

This article explains how Spring Boot's spring-retry module and the @Retryable annotation enable clean, annotation‑driven retry logic for common failure scenarios, covering configuration, code examples, recovery handling with @Recover, and important usage precautions.

AnnotationsBackend DevelopmentJava
0 likes · 7 min read
Mastering Spring Retry: How @Retryable Simplifies Robust Backend Calls
Code Ape Tech Column
Code Ape Tech Column
Apr 12, 2022 · Backend Development

Using Spring Retry @Retryable for Automatic Retry in Spring Boot Applications

This article introduces Spring Retry's @Retryable annotation, explains its purpose, shows how to add the Maven dependency, enable retry support, annotate methods with retry settings, handle failures with @Recover, and outlines important considerations for reliable retry mechanisms in Java backend development.

JavaRetryableSpring Boot
0 likes · 7 min read
Using Spring Retry @Retryable for Automatic Retry in Spring Boot Applications