Well that was interesting! I ended up copying the LazyStopWebappLoader source
to my own implementation because it's missing from the current
tomee-catalina-1.6.0-SNAPSHOT.
I had to tweak it slightly to prevent an NPE:
@Override
protected synchronized void startInternal() throws LifecycleException {
// NPE! currentAppId = standardContext.getName();
// to
currentAppId = getAppId(); // needed by classloader instantiated by
next line
which seems to work fine since to all burst into life. Thanks.
--
View this message in context:
http://openejb.979440.n4.nabble.com/Context-Loader-element-ignored-TOMEE-1-5-2-tp4663593p4663692.html
Sent from the OpenEJB User mailing list archive at Nabble.com.