I'm trying to migrate my Spring Boot 2 Resilience4j implementation to the one provided by Spring Cloud Circuitbreaker.
So basically, from dependencies to dependency.
According to Spring Cloud documentation, I found out that it was possible to configure the (containing the module) and the modules of Resilience4j through customizers.
However, I don't see any configuration available for the and modules, that are available features in R4J documentation.
Is there a way to configure those modules directly with Spring Cloud Circuitbreaker so they are part of the ReactiveCircuitBreakerFactory? Or do I still need to configure a RetryRegistry appart from it?
