<div dir="ltr"><br><br><div class="gmail_quote"><div dir="ltr">On Fri, 12 Feb 2016 at 07:41 Scott Marlow &lt;<a href="mailto:smarlow@redhat.com">smarlow@redhat.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
On 02/11/2016 03:02 PM, Stuart Douglas wrote:<br>
&gt; Have you considered a 3rd alternative, which is to use a custom<br>
&gt; ProxyFactory instead of javassists built in one?<br>
&gt;<br>
&gt; AFAIK the main issue is that javassist proxies require access to the<br>
&gt; &#39;javassist.util.proxy.MethodHandler|RuntimeSupport&#39; classes. You could<br>
&gt; create a similar org.hibernate interface, and a proxy factory that uses<br>
&gt; this method handler instead.<br>
&gt;<br>
&gt; Basically you just copy the code from javassist.util.proxy into<br>
&gt; hibernate. This is a relatively small amount of code, so it should not<br>
&gt; really add any maintenance burden.<br>
<br>
We talked about this as well via [1].  I understand the concept but have<br>
not tried doing this.  I like this approach as well, if it works.  One<br>
of the cons with cloning that Steve Ebersole pointed out (see response<br>
on Feb-03-2016 9:01am), is that that users lose the ability to drop a<br>
different version of Javassist in (since we maintain our own cloned copy<br>
of the Javassist proxy/runtime code).<br></blockquote><div><br></div><div>The proxy code is a relatively small part of javassist, so unless a bug is in the proxy code itself this should not be that big a deal.<br><br></div><div>If they do go down the shade route will this shaded hibernate+javassist be a different artifact (i.e. will they still publish a non javassist version of hibernate)?<br><br></div><div>Stuart<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
If we use a private packaged copy of the jars, in order to use a<br>
different version of Javassist, users would have to get a new version of<br>
Hibernate that is built with that different Javassist (as you point out).<br>
<br>
I would like to create a HHH jira for this issue that doesn&#39;t require a<br>
specific implementation technique, so we can track this issue.<br>
<br>
Scott<br>
<br>
[1] <a href="http://lists.jboss.org/pipermail/hibernate-dev/2016-February/014219.html" rel="noreferrer" target="_blank">http://lists.jboss.org/pipermail/hibernate-dev/2016-February/014219.html</a><br>
<br>
&gt;<br>
&gt; The inability to change javassist versions could be a major pain for<br>
&gt; Hibernate later on, as it may mean that older hibernate versions fail to<br>
&gt; work with newer JDK&#39;s if changes are made to the class file format.<br>
&gt;<br>
&gt; Stuart<br>
&gt;<br>
&gt; On Fri, 12 Feb 2016 at 03:03 Scott Marlow &lt;<a href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a><br>
&gt; &lt;mailto:<a href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;     As previously discussed, Hibernate applications need access to the<br>
&gt;     Javassist runtime classes (see example [1] enhanced application entity<br>
&gt;     if you didn&#39;t know this :).  A proposal was discussed on the<br>
&gt;     hibernate-dev mailing list that I think is the best short term solution.<br>
&gt;        I wanted to raise this issue here also, as I would like to later<br>
&gt;     create a pull request to bring in a new Hibernate ORM that includes this<br>
&gt;     change.  So, getting early feedback before we create JIRAs for the work,<br>
&gt;     is important.<br>
&gt;<br>
&gt;     The proposal is to private package (or shade), the Javassist classes, so<br>
&gt;     that Hibernate ORM has its own copy of the Javassist classes.  On<br>
&gt;     WildFly, we still would include Javassist for the other components that<br>
&gt;     use it and for Hibernate applications that have &quot;build-time enhanced<br>
&gt;     entity classes&quot; by an earlier Hibernate release.<br>
&gt;<br>
&gt;     One downside of this change is that Hibernate applications cannot easily<br>
&gt;     switch to a different version of the Javassist classes.<br>
&gt;<br>
&gt;     Another downside is that applications that depend on an older Hibernate<br>
&gt;     ORM version that includes &quot;build-time enhanced entity classes&quot;, will<br>
&gt;     need to be cracked open, to add dependencies on the Javassist module<br>
&gt;     (since we will stop automatically adding Javassist to JPA application<br>
&gt;     deployments).<br>
&gt;<br>
&gt;     The advantage of this change, is that Hibernate applications can include<br>
&gt;     their own version of Javassist.<br>
&gt;<br>
&gt;     This will also have an impact on Hibernate build-time enhancing of<br>
&gt;     entity classes (e.g. enhanced bytecode will no longer depend on the<br>
&gt;     public Javassist classes).<br>
&gt;<br>
&gt;     Scott<br>
&gt;<br>
&gt;     [1] <a href="https://gist.github.com/scottmarlow/dc7ebfea654984f84e2e" rel="noreferrer" target="_blank">https://gist.github.com/scottmarlow/dc7ebfea654984f84e2e</a><br>
&gt;     _______________________________________________<br>
&gt;     wildfly-dev mailing list<br>
&gt;     <a href="mailto:wildfly-dev@lists.jboss.org" target="_blank">wildfly-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:wildfly-dev@lists.jboss.org" target="_blank">wildfly-dev@lists.jboss.org</a>&gt;<br>
&gt;     <a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
&gt;<br>
</blockquote></div></div>