Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6419145

JAXP fails to fall back properly when a non-standard class loader delegation is used

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 6
    • 5.0
    • xml

        javax/xml/transform/FactoryFinder.java has the following part in the newInstance method:

          // Fall back to current classloader
          cl = FactoryFinder.class.getClassLoader();
          providerClass = cl.loadClass(className);

        This code is used when the context class loader of the current thread fails to load the class.
        When a class loader like the one in Tomcat is used (where they don't always delegate to the parent class loader),
        this code is executed in the hope that this classloader can find the class.

        Alas, when JAXP is in Tiger's rt.jar, FactoryFinder.class.getClassLoaer() returns null, so we'll get NPE.
        The above code needs to be changed to:

          // Fall back to current classloader
          cl = FactoryFinder.class.getClassLoader();
          providerClass = Class.forName(className,true,cl);

        See Class.forName javadoc for why this works correctly when cl==null and cl!=null.

        I haven't checked, but I suspect this problem to apply to other FactoryFinders.

              spericas Santiago Pericasgeertsen
              kkawagucsunw Kohsuke Kawaguchi (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: