I am working in Micro-Services environment and i have 3 different application A, B and C.
i am using Resilience4j with Circuit Breaker in Spring Boot Application. And i am using 'C' application which is containing Controller Advice and added .jar into 'B' dependency and also 'B' application .jar is also added into 'A' application dependencies.
I am producing one Resp services and send request to another here my Controller advice within 'C' application which is already added into 'B' application dependencies and same 'B' application dependencies are added into 'A' application.
my request goes from 'A' application to 'B'application i want to handle my own exception in 'B' application but I have already added my dependency of 'C' application into 'B' application but my Controller advice is still not working.
So please provide me best solution for my above queries.