python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Why my Spring Boot @Pointcut not triggering with @Around advise and ProceedingJoinPoint?
I am trying to log some info during api call in console in my Spring Boot application. I have used Spring Aop and trying to use @Around advise with @Pointcut by using ProceedingJoinPoint. The program ...
Deep
Votes: 0
Answers: 1
How to return an Object from TimeLimiter instead of CompletableFuture
resilience4j @TimeLimiter returns CompletableFuture object... but I want the object.. how to make a work around... please need suggestions.
Raj
Votes: 0
Answers: 0
Retrofit - having custom logic run when the call is executed
I'm using Retrofit for doing HTTP calls in a Spring boot application.
I'm trying to find a way to have my custom code runs whenever the API call is executed.
In the context of my custom code i need to...
mosh
Votes: 0
Answers: 1
Spring AOP change object inside method
I would to know if Spring AOP can change a value inside a method
For example:
public void(String name){
DTO dto = new DTO();
}
I would execute dto.someSetter() inside advice.
It's possible?
ciro
Votes: 0
Answers: 0