You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Akram (JIRA)" <ji...@apache.org> on 2019/04/16 14:47:00 UTC

[jira] [Created] (DBCP-544) Custom Shared ClassLoader not working after migrated from Tomcat 7 to Tomcat 9.0.17

Akram created DBCP-544:
--------------------------

             Summary: Custom Shared ClassLoader not working after migrated from Tomcat 7 to Tomcat 9.0.17
                 Key: DBCP-544
                 URL: https://issues.apache.org/jira/browse/DBCP-544
             Project: Commons DBCP
          Issue Type: Bug
            Reporter: Akram


|
|h3. Akram Hussain <ak...@gmail.com>|
|3:59 PM (4 hours ago)
 | |!https://mail.google.com/mail/u/0/images/cleardot.gif!
!https://mail.google.com/mail/u/0/images/cleardot.gif!|
|
|to users
!https://mail.google.com/mail/u/0/images/cleardot.gif|id=:3m3!|
|
 
 
 
Hi,

I have Custom SharedClassLoader in Tomcat 7 to load shared library jars,
which is used by different applications in that tomcat. We migrated to
Tomcat 9, now it is not working. How to achieve the same functionality in
tomcat 9.

In Tomcat 9 it expects resources to be passed. I don't find any sample Code
on how to populate resources.

I tried like below

public CustomSharedClassLoader(ClassLoader parent) throws Exception {
        super(parent);
//The below three lines are added by me to work for Tomcat 9.
        StandardRoot standardRoot = new StandardRoot();
        standardRoot.addPreResources(new DirResourceSet());
        setResources(standardRoot);// End for tomcat 9 changes.

        for (URL urlForJars : getClassPath(SHARED_LIB)) {
            addURL(urlForJars);
        }
        start();
    }

It didn't work.

public class CustomSharedClassLoader extends WebappClassLoader{//Which
takes shared folder libarary, it returns those classes.}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)