September 2019
Intermediate to advanced
668 pages
15h 59m
English
To add a circuit breaker, we have to add dependencies to the appropriate Resilience4j libraries in the build file, build.gradle:
ext { resilience4jVersion = "0.14.1"}dependencies { implementation("io.github.resilience4j:resilience4j-spring- boot2:${resilience4jVersion}") implementation("io.github.resilience4j:resilience4j- reactor:${resilience4jVersion}") ...