<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    Re: How to stop my WAR loading JBoss's provided 3rd party classes?
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/hostalp">Petr H</a> in <i>JBoss Microcontainer</i> - <a href="http://community.jboss.org/message/578445#578445">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hello,</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>so based on what's discussed here I tried some things but don't seem to have succeeded.</p><p>I'll shortly describe what I'm up to and what I've done:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I've got an ear:</p><p>ear/lib - shared jars</p><p>ear/web1.war</p><p>ear/web2.war</p><p>ear/web3.war</p><p> (wars reference some of tha shared stuff in lib via META-INF/MANIFEST.MF Class-Path)</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Now I'm trying to filter out JBoss Hibernate stuff for the whole ear globally:</p><p>ear/META-INF/jboss-classloading-domain.xml</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&lt;?xml version="1.0" encoding="UTF-8"?&gt;</p><p>&lt;classloading-domain xmlns="urn:jboss:classloading-domain:1.0" name="MyDomain"&gt;<br/> &lt;parent-policy&gt;<br/>&#160; &lt;before-filter&gt;<br/>&#160;&#160; &lt;javabean xmlns="urn:jboss:javabean:2.0" class="org.jboss.classloader.plugins.filter.NegatingClassFilter"&gt;<br/>&#160;&#160;&#160; &lt;constructor&gt;<br/>&#160;&#160;&#160;&#160; &lt;parameter&gt;<br/>&#160;&#160;&#160;&#160;&#160; &lt;javabean xmlns="urn:jboss:javabean:2.0" class="org.jboss.classloader.spi.filter.PackageClassFilter"&gt;<br/>&#160;&#160;&#160;&#160;&#160;&#160; &lt;constructor&gt;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;parameter&gt;org.hibernate&lt;/parameter&gt;<br/>&#160;&#160;&#160;&#160;&#160;&#160; &lt;/constructor&gt;<br/>&#160;&#160;&#160;&#160;&#160; &lt;/javabean&gt;<br/>&#160;&#160;&#160;&#160; &lt;/parameter&gt;<br/>&#160;&#160;&#160; &lt;/constructor&gt;<br/>&#160;&#160; &lt;/javabean&gt;<br/>&#160; &lt;/before-filter&gt;<br/> &lt;/parent-policy&gt;<br/>&lt;/classloading-domain&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>however I'm still getting an exceptions related to hibernate validator which appears to be related to the differences between hibernate bundled in the ear - 3.5.6 - and hibernate in JBoss 6.0.0.Final - 3.6.0 + hibernate Validator 4.1.0 - see below.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>So that doesn't seem to be working for me. Now - what's wrong? Should I define a jboss-classloading.xml as well (I don't have any at the moment)? What it should look like then?</p><p>And can all this be done on the ear level, or should I go through each war?</p><p>Or anything else?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>org.hibernate.AnnotationException: java.lang.NoSuchMethodException: org.hibernate.validator.ClassValidator.&lt;init&gt;(java.lang.Class, java.util.ResourceBundle, org.hibernate.validator.MessageInterpolator, java.util.Map, org.hibernate.annotations.common.reflection.ReflectionManager)<br/> at org.hibernate.cfg.AnnotationConfiguration.applyHibernateValidatorLegacyConstraintsOnDDL(AnnotationConfiguration.java:455) [:3.5.6-Final]<br/> at org.hibernate.cfg.AnnotationConfiguration.applyConstraintsToDDL(AnnotationConfiguration.java:428) [:3.5.6-Final]<br/> at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:403) [:3.5.6-Final]<br/> at org.hibernate.cfg.Configuration.buildMappings(Configuration.java:1206) [:3.5.6-Final]<br/> at org.hibernate.ejb.Ejb3Configuration.buildMappings(Ejb3Configuration.java:1459) [:3.5.6-Final]<br/> at org.hibernate.ejb.EventListenerConfigurator.configure(EventListenerConfigurator.java:193) [:3.5.6-Final]<br/> at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:1086) [:3.5.6-Final]<br/> at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:685) [:3.5.6-Final]</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/578445#578445">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss Microcontainer at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2114">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>