[jboss-user] [JBoss Microcontainer] - Re: How to stop my WAR loading JBoss's provided 3rd party classes?

Ales Justin do-not-reply at jboss.com
Mon Dec 13 12:34:06 EST 2010


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

"Re: How to stop my WAR loading JBoss's provided 3rd party classes?"

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

--------------------------------------------------------------
> What I'd like to do is exclude the application server's 1.0.com.sun.codemodel package (from jaxb-xjc.jar) from the classpath for my application and use the one that is bundled in my library path instead.  Do I put that package in the before-filter or after-filter element?
You need something like this:

<?xml version="1.0" encoding="UTF-8"?>

<classloading-domain xmlns="urn:jboss:classloading-domain:1.0" name="your-domain-name">
   <parent-policy>
      <before-filter>
         <javabean xmlns="urn:jboss:javabean:2.0" class="org.jboss.classloader.plugins.filter.NegatingClassFilter">
            <constructor>
               <parameter>
                  <javabean xmlns="urn:jboss:javabean:2.0" class="org.jboss.classloader.spi.filter.PackageClassFilter">
                     <constructor>
                        <parameter>1.0.com.sun.codemodel</parameter>
                     </constructor>
                  </javabean>
               </parameter>
            </constructor>
         </javabean>
      </before-filter>
   </parent-policy>
</classloading-domain>
--------------------------------------------------------------

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

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

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-user/attachments/20101213/ced873d6/attachment-0001.html 


More information about the jboss-user mailing list