I'm calling a webservice using RestEasy Client. One requirement is to abort/timeout the call if it runs for more that 5 seconds. How would I achieve this with RestEasy Client? I have only seen server side timeout, i.e. the Rest Easy websevice will timeout the request if it's not fulfilled within a certain time.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
The answer by Carter Page is correct for Apache HttpClient version >= 4.0.
For earlier versions of HttpClient (e.g. 3.1) the code is slightly different:
If you prefer the builder pattern here is how you do it:
taken from here: http://blog.eisele.net/2014/12/setting-timeout-for-jax-rs-20-resteasy-client.html
If you are using resteasy client framework with spring integration (documentation), the following is the way to set timeout values:
A RESTEasy client typically uses Apache HttpClient to handle the network conversation.
You can override the HttpClient properties with your own custom timeout parameters:
The first param allows you to specify timeout establishing the initial connection and the second allows you to specify the maximum period of time in which a socket will wait while no data is sent.
You can use the modified HttpClient to build your ClientExecutor:
Which can be used in turn to build a ClientRequest object. Or you can inject it into a RestClientProxyFactoryBean if you are using a Spring configuration for RESTEasy.
It's not exactly the same as an absolute 5 second timeout, but depending on what you are trying to accomplish, tweaking these two properties will usually fill the bill.