Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Start webapps in tomcat in a determinate order

I have 2 webapps:

WebApp 2 depends from WebApp 1

If WebApp 1 is not running, WebApp 2 fails

Can I define in tomcat that I always want that webapp 1 starts before webapp 2?

like image 351
xfernandez Avatar asked Oct 01 '09 13:10

xfernandez


People also ask

Which component controls the priority of starting and stopping of processes in Tomcat?

The main Tomcat script. This runs the java command to invoke the Tomcat startup and shutdown classes.


1 Answers

According to the Apache wiki (at http://wiki.apache.org/tomcat/FAQ/Miscellaneous#Q27):

There is no expected startup order. Neither the Servlet spec nor Tomcat define one. You can't rely on the apps starting in any particular order.

like image 141
Jim Garrison Avatar answered Sep 28 '22 14:09

Jim Garrison