XmlParserHelper can leak deployment classloader in wildfly integration

Description

I'm not exactly sure what's going on in this trace with the modules version of XmlInputFactory, but it looks like the static XMLInputFactory in XmlParserHelper can leak the deployment classloader.

Environment

Fedora 19, Oracle 7u45, Wildfly from master

Activity

Show:

Hardy FerentschikDecember 19, 2013 at 9:58 AM

newInstance or newFactory, both have the same problem.

Gunnar MorlingDecember 19, 2013 at 9:35 AM

You mean something like XMLInputFactory.newFactory("javax.xml.stream.XMLInputFactory", XmlParserHelper.class.getClassLoader())

Yes, but we should use newInstance(), as newFactory() was introduced with JDK 1.6.18 only.

I like the idea, but it needs more testing than just making the instance non static.

True.

how much benefit do we get by "caching" the XMLInputFactory.

Yes, that's the question. The method seems to make use of the service loader, so its calls are surely not for free, but as this would only affect the usage during bootstrapping it might be acceptable.

Hardy FerentschikDecember 19, 2013 at 9:34 AM

Hmm, XMLInputFactory.newFactory("javax.xml.stream.XMLInputFactory", XmlParserHelper.class.getClassLoader()) does not work out of the box.

Hardy FerentschikDecember 19, 2013 at 9:24 AM

You mean something like XMLInputFactory.newFactory("javax.xml.stream.XMLInputFactory", XmlParserHelper.class.getClassLoader()). That might be a solution. It depends on the nature of the underlying JAXB issue. I like the idea, but it needs more testing than just making the instance non static.

Making the instance non static clearly solved the problem, whereas fiddling with class loaders might cause other problems. The question is really, how much benefit do we get by "caching" the XMLInputFactory.

Gunnar MorlingDecember 19, 2013 at 9:17 AM

Couldn't we just use the newInstance() method which takes a class loader and pass the loader of XmlParserHelper? Then the variable could remain static as we shouldn't leak the deployment's loader anymore?

Fixed

Details

Assignee

Reporter

Bug Testcase Reminder (view)

Bug reports should generally be accompanied by a test case!

Bug Testcase Reminder (edit)

Bug reports should generally be accompanied by a test case!

Participants

Brent Douglas
Gunnar Morling
Hardy Ferentschik

Components

Affects versions

Priority

Created December 16, 2013 at 11:46 PM
Updated January 28, 2014 at 9:51 AM
Resolved December 19, 2013 at 11:19 AM