You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wink.apache.org by "Mike Rheinheimer (JIRA)" <ji...@apache.org> on 2009/11/04 22:14:33 UTC

[jira] Updated: (WINK-226) need fallback for Class.forName in J2EE environments

     [ https://issues.apache.org/jira/browse/WINK-226?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mike Rheinheimer updated WINK-226:
----------------------------------

    Attachment: WINK-226.patch

> need fallback for Class.forName in J2EE environments
> ----------------------------------------------------
>
>                 Key: WINK-226
>                 URL: https://issues.apache.org/jira/browse/WINK-226
>             Project: Wink
>          Issue Type: Bug
>          Components: Server
>    Affects Versions: 1.1
>            Reporter: Mike Rheinheimer
>             Fix For: 1.1
>
>         Attachments: WINK-226.patch
>
>
> In J2EE environments, the Wink libraries may be managed by a different classloader (A) than the Application subclass (B).  In these cases, (A) needs to load (B) by way of Class.forName(B).  However, due to the J2EE environment, and classloader hierarchies, (A) does not have visibility into (B).
> The solution is to use the thread context classloader instead of Class.forName, which uses the system classloader.  This "try thread context classloader first, then fallback to system classloader" functionality is built into org.apache.commons.lang.ClassUtils.getClass(String).  We already have a dependency on Apache commons in wink-server, so I figure we can just use that.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.