Skip to content

Instantly share code, notes, and snippets.

View RobWin's full-sized avatar

Robert Winkler RobWin

  • Deutsche Telekom
  • Frankfurt, Germany
  • X @rbrtwnklr
View GitHub Profile
@SpringBootApplication
@Configuration
public class DemoApplication {
private EmployeeRepository employeeRepository;
private CircuitBreaker circuitBreaker;
private Retry retry;
public DemoApplication(CircuitBreakerRegistry circuitBreakerRegistry,
RetryRegistry retryRegistry,
@RobWin
RobWin / DemoApplication.java
Created April 7, 2019 14:59
Functional Web Spring 5 with Resilience4j
@SpringBootApplication
@Configuration
public class DemoApplication {
private CircuitBreakerRegistry circuitBreakerRegistry;
private RetryRegistry retryRegistry;
private EmployeeRepository employeeRepository;
public DemoApplication(CircuitBreakerRegistry circuitBreakerRegistry,
RetryRegistry retryRegistry,