Ales Justin [http://community.jboss.org/people/alesj] created the discussion

"Re: Visibility of several (versions of) jar's in JBoss EAP 5.1"

To view the discussion, visit: http://community.jboss.org/message/641119#641119

--------------------------------------------------------------
For F: perhaps try to avoid big-ball-o-mud, and filter out the xxx.jar from ext 
delegates.

This is the code in BaseCLDomain that should help:

         if (policy.isImportAll())
            allExports = true;
      }
 
 
      // Next we try the old "big ball of mud" model      
      if (allExports)
      {
         loader = findLoaderInExports(classLoader, name, trace);
         if (loader != null)
            return loader;
      }
      else if (trace)
         log.trace(this + " not loading " + name + " from all exports");
 
      // Next we try the imports
      if (info != null)
      {
         loader = findLoaderInImports(info, name, trace);
--------------------------------------------------------------

Reply to this message by going to Community
[http://community.jboss.org/message/641119#641119]

Start a new discussion in JBoss Microcontainer at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2114]

_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to