Spring Boot - Advanced Patterns
Given this code snippet, what will be the output if the service fails 5 times and the failure rate threshold is 50%?
@CircuitBreaker(name = "myService", fallbackMethod = "fallback")
public String callService() {
// service call that fails 5 times
}