https://bz.apache.org/bugzilla/show_bug.cgi?id=69615

--- Comment #7 from Dushyant Shinde <dushyant.shinde...@gmail.com> ---
We are using the URLClassLoader class to dynamically load JARs using reflection
(see the code below). Will your fix work with URLClassLoader?

   URLClassLoader webappClassLoader = (URLClassLoader)
Thread.currentThread().getContextClassLoader();
   Method method = URLClassLoader.class.getDeclaredMethod("addURL", URL.class); 
   method.setAccessible(true);                                                  
   method.invoke(webappClassLoader, new Object[]{jarUrl});

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to