If I understand correctly, you are describing moving a src file
(ProfileServlet.java) under project/WEB-INF/src in your production Tomcat
webapps directory. I know that am not sure why you believe that Tomcat will
automatically compile your servlet source (I believe it will for a .jsp
file)
The co
I think it's because that you just enabled the "Auto Build" feature of
eclipse, so every time you changed your java source, eclipse built it
for you, and tomcat saw the class files changed and then reloaded that
context. But when you metioned "for my production", I guess that
machine do not have a
I remember something about a reloadable parameter in the Server.xml (in a
tag above context either host or engine I think) that has that attribute as
well. Unless the "override" attribute is included, the attribute in the
context tag is not applied. I may be chasing the wrong horse, but it
somewh
Forget to mentioned, I have make sure my tag in server.xml have
included the reloadable="true" entity
Foong Kim Seong
-Original Message-
From: ks.foong [mailto:[EMAIL PROTECTED]
Sent: Friday, June 02, 2006 4:52 PM
To: 'Tomcat Users List'
Subject: Auto Reload Features by Tomcat
Hi, I