Is there any mechanism, lifecycle event or callbacks, in Spring or Tomcat to notify once Tomcat server startup is completed? (I have 8 web applications and queues configured
In case someone wants to do it programmatically (if using embedded Tomcat for example):
Tomcat tomcat = new Tomcat(); ... tomcat.getServer().addLifecycleListener(new KPTomcatListener()); tomcat.start()