> From: is_maximum [mailto:[EMAIL PROTECTED] 
> Subject: RE: problem when changing code and deploying
> 
> oh no, I didnt mean "on the fly"? I restart the Tomcat but it 
> still remain intact.
> this happens for static methods and static instance variables.

If the original classes are still used after restarting Tomcat, then you
must have them in some location being searched by one of Tomcat's
classloaders, or you didn't put the revised ones in the proper location.
Verify that you have nothing on your CLASSPATH environment variable and
that the classes in question do not appear in multiple places in the
classloader tree:

      Bootstrap
          |
       System
          |
       Common
      /      \
 Catalina   Shared
             /   \
        Webapp1  Webapp2 ... 

Look here for classloader info:
http://tomcat.apache.org/tomcat-5.5-doc/class-loader-howto.html

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to