-
Bug
-
Resolution: Fixed
-
P3
-
5.0
-
b92
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2141414 | 5.0u10 | Mike Belopuhov | P3 | Resolved | Fixed | b02 |
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.
// 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.
- backported by
-
JDK-2141414 JAXP fails to fall back properly when a non-standard class loader delegation is used
-
- Resolved
-
- relates to
-
JDK-6350682 REGRESSION: SAXParserFactory throws FactoryConfigurationError if contextClassLoader=null
-
- Resolved
-