I had worked on an application with SOAP web service where all the soap api calls will be triggered through one place using handler method invocation.
I've not seen the implementation in detail but I know how it was working.
Can we have one class where I can track all the REST apis before it hits and after i receive the response. I use spring. Except AOP, how to write handler method invocation for REST service?
What I'm asking is, instead of writing RestTemplate.exchange() in all the services wherever I make rest call, can I have a method invocation handler mechanism to invoke all the request at one place and to get the response asynchronously?
You can use a
javax.servlet.Filter
to intercept all the requests sent to the server and intercept all the responses from the server to the client. From javadoc: