Ask questions and see you at December, 9th, 8pm CET: http://www.ustream.tv/channel/adambien
Also checkout recent episode:
Please keep the questions Jakarta EE-stic. Means: as short and as concise as only possible. Feel free to ask several, shorter questions.
Hello Adam,
Is it possible to setup timeout for JAX-RS endpoints globally? I use payara 5.191. In admin console, I found in network settings and also in http listener some properties to setup timeout, but it doesn`t work.
Finally I used @timeout annotation from microprofile library, which it works, but only when I do some business logic without calling rest client. This annotation doesn
t work when I do rest call to fetch data from other microservice. (my explanation why it doesn
t work: establishing an HTTP connection and then reading from it are blocking operations. Interrupting the thread has no effect. )Could you give me some examples how to setup max timeout for JAX-RS endpoints? Thanks.