Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 인프런
- 스프링
- jpa
- 김영한
- Thymeleaf
- spring
- 스프링 핵심 기능
- Servlet
- 스프링 핵심 원리
- 그리디
- SpringBoot
- QueryDSL
- Spring Boot
- AOP
- 알고리즘
- java
- Greedy
- kotlin
- Android
- 백준
- Exception
- transaction
- springdatajpa
- db
- pointcut
- JPQL
- http
- 자바
- Proxy
- JDBC
Archives
- Today
- Total
목록@Retry (1)
개발자되기 프로젝트
[스프링AOP실전] 재시도AOP
@Retry 애노테이션이 있으면 예외가 발생했을 때 다시 시도해서 문제를 복구한다. 1. @Retry Retry방식을 사용할 때 항상 재시도 횟수가 정해져 있어야 함. @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface Retry { int value() default 3; //Retry는 항상 재시도 횟수가 있어야함.. } 2. RetryAspect @Slf4j @Aspect public class RetryAspect { /* @Around("@annotation(hello.aop.exam.annotation.Retry)") public Object doRetry(ProceedingJoinPoint join..
인프런/[인프런] 스프링 핵심 원리 - 고급
2022. 1. 9. 13:38