Order of webapps startup

2011-02-17 Thread Srikanth Konjarla
As per the Wiki at http://wiki.apache.org/tomcat/FAQ/Miscellaneous#Q27 --- What order do webapps start (or how can I change startup order)? 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. ---

Re: Order of webapps startup

2011-02-17 Thread Mark Thomas
On 17/02/2011 21:38, Srikanth Konjarla wrote: As per the Wiki at http://wiki.apache.org/tomcat/FAQ/Miscellaneous#Q27 --- What order do webapps start (or how can I change startup order)? There is no expected startup order. Neither the Servlet spec nor Tomcat define one. You can't rely on

Re: Order of webapps startup

2011-02-17 Thread Mark Thomas
On 17/02/2011 22:12, Mark Thomas wrote: The one way you can control this is define the Contexts in server.xml. They will be started in the order they appear in the file. Forgot to mention the caveat. It works like this at the moment. There is no guarantee it will continue to work like this.

Re: Order of webapps startup

2011-02-17 Thread André Warnier
Mark Thomas wrote: On 17/02/2011 22:12, Mark Thomas wrote: The one way you can control this is define the Contexts in server.xml. They will be started in the order they appear in the file. Forgot to mention the caveat. It works like this at the moment. There is no guarantee it will continue