> From: Xu Ning [mailto:[EMAIL PROTECTED]
> Subject: about dynamic class loading
>
> Can it load the changed class without context restart ?
The simple answer is no. Try looking at the doc:
http://tomcat.apache.org/tomcat-5.5-doc/class-loader-howto.html
http://tomcat.ap
You should read about class loader in Java. It does not relates to
tomcat. But tomcat implements classloader to load servlets, libraries
and jsp. You can't force class unload except calling gc.
Thursday, December 14, 2006, 6:02:06 PM, you wrote:
XN> hi everyone,
XN> I'd like to know wether Tomc
hi everyone,
I'd like to know wether Tomcat can load a class dynamicly.
for example, Tomcat can load a JSP page without restart the context when I
changed the code of the JSP. But when I changed a class, the context must be
restarted.
Can it load the changed class without context restart ?
I'