views:

307

answers:

1

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?

Thanks

+2  A: 

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.

Jim Garrison