Hello,
Quoting from JETTY documentation
(http://docs.codehaus.org/display/JETTY/Classloading) :
"""
Using a custom WebAppClassLoader
Finally, if none of the other alternatives already described meet your
needs, you can always provide a custom classloader for your webapp. It
is recommended, but not required, that your custom loader subclasses
org.mortbay.jetty.webapp.WebAppClassLoader. You configure the
classloader for the webapp like so:
MyCleverClassLoader myCleverClassLoader = new MyCleverClassLoader();
...
WebAppContext webapp = new WebAppContext();
...
webapp.setClassLoader(myCleverClassLoader);
"""
Can I do this with tomcat in the method:
- class ApplicationWatch implements ServletContextListener
- public void contextInitialized(ServletContextEvent ce) {
... ?
--
Cheers,
Maxim Veksler
"Free as in Freedom" - Do u GNU ?
---------------------------------------------------------------------
To start a new topic, e-mail: [email protected]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]