Last active
January 3, 2021 04:36
-
-
Save skaveesh/13e5fb9ce9eef18c308af246e1b21e10 to your computer and use it in GitHub Desktop.
How I Decoupled Circuit Breaker from the Code with AOP in Spring Boot for Better Code Maintenance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//code is omitted for brevity | |
@Retention(RetentionPolicy.RUNTIME) | |
@Target({ElementType.METHOD}) | |
public @interface EnableCircuitBreakerScan { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment