Skip to content

Instantly share code, notes, and snippets.

@deepakmehra10
Created June 22, 2020 21:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deepakmehra10/4240d0af18113b5c0179b2405b00d973 to your computer and use it in GitHub Desktop.
Save deepakmehra10/4240d0af18113b5c0179b2405b00d973 to your computer and use it in GitHub Desktop.
// With Fallback
@GetMapping("/fallback/users")
@CircuitBreaker(name = USER_SERVICE, fallbackMethod = "getUserFallback")
public Mono<ResponseEntity> getUserWithFallback() {
// This will cause the exception and control will be transferred to fallback method.
return Mono.error(new TimeoutException("Timeout exception occurred."));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment