I've already created my rest webservices (around 250 services in 70 java files). I want to add response timeout handler for all of the api's. Instead of adding it to individually 250 places, is there a way I can handle this with out touching existing services ?
Asked
Active
Viewed 773 times
2
-
Perhaps on the client side, like this: http://stackoverflow.com/questions/22672664/setting-request-timeout-for-jax-rs-2-0-client-api. – António Ribeiro Apr 22 '16 at 22:25
-
In the link below we are taking taking about the clients , but we need to do it for the webservice endpoints and the timeout for there response – Sanket Aug 27 '19 at 10:57