Re: Best way to *programmatically* detect that all webapps are fully deployed and running?

2023-09-30 Thread Bruno Melloni
Thanks, * I really like the idea of either using JMX (although I am not yet familiar with it) or always implementing a health check endpoint for each REST service. * What would I use to query the list of *all* webapps (already up and running or not) on the tomcat server? B. On 9/30/2

Re: Best way to *programmatically* detect that all webapps are fully deployed and running?

2023-09-30 Thread Mark Thomas
On 29/09/2023 20:20, Bruno Melloni wrote: On a tomcat server I have a number of REST services deployed as WARs. There are interdependencies and even applications on other servers that call them, so I really don't want to start calling services after starting Tomcat until every single webapp is fu

Best way to *programmatically* detect that all webapps are fully deployed and running?

2023-09-29 Thread Bruno Melloni
On a tomcat server I have a number of REST services deployed as WARs. There are interdependencies and even applications on other servers that call them, so I really don't want to start calling services after starting Tomcat until every single webapp is fully up and running. Ideally, I would like