You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Alex Colic <al...@pop-ware.com> on 2001/09/13 18:42:59 UTC

web.xml and reloading

Hi where are these tags set?

In the web.xml or servlet.xml files:

  <Context ... reloadable="true" ...>
    <Loader checkInterval="5"/>
  </Context>

Thanks

Alex


Re: web.xml and reloading

Posted by paul <pa...@roadrunner.uk.com>.
in the server.xml

----- Original Message ----- 
From: "Alex Colic" <al...@pop-ware.com>
To: "Tomcat-User" <to...@jakarta.apache.org>
Sent: Thursday, September 13, 2001 5:42 PM
Subject: web.xml and reloading


> 
> Hi where are these tags set?
> 
> In the web.xml or servlet.xml files:
> 
>   <Context ... reloadable="true" ...>
>     <Loader checkInterval="5"/>
>   </Context>
> 
> Thanks
> 
> Alex
> 


Re: web.xml and reloading

Posted by Paul Downs <pa...@positive-internet.com>.
Hi,

>   <Context ... reloadable="true" ...>
>     <Loader checkInterval="5"/>
>   </Context>

 Server.xml I would guess.  Is that Loader checkInterval value in minutes? 
That is exactly the sort of configuration i have been looking for! ^_^

Paul

Re: web.xml and reloading

Posted by "Craig R. McClanahan" <cr...@apache.org>.

On Thu, 13 Sep 2001, Alex Colic wrote:

> Date: Thu, 13 Sep 2001 12:42:59 -0400
> From: Alex Colic <al...@pop-ware.com>
> Reply-To: tomcat-user@jakarta.apache.org
> To: Tomcat-User <to...@jakarta.apache.org>
> Subject: web.xml and reloading
>
>
> Hi where are these tags set?
>
> In the web.xml or servlet.xml files:
>
>   <Context ... reloadable="true" ...>
>     <Loader checkInterval="5"/>
>   </Context>
>
> Thanks
>

It's in conf/server.xml.  For complete Tomcat 4 documentation, see

  http://jakarta.apache.org/tomcat/tomcat-4.0-doc/

and read the "Server Configuration Reference" stuff.  This is the same
documentation that will be included in the final Tomcat 4 release.

You are also ***strongly*** encouraged to read the Servlet Specification
(covering the contents of web.xml), which is available at:

  http://java.sun.com/products/servlet/download.html

An important rule of thumb to remember:  everything in web.xml is portable
-- everything in server.xml is specific to Tomcat.

> Alex
>
>

Craig