HHH-3078 copyright and refactored package
This commit is contained in:
parent
228d14e8bc
commit
0433a539b4
|
@ -158,11 +158,12 @@ public class PojoEntityTuplizer extends AbstractEntityTuplizer {
|
||||||
protected ProxyFactory buildProxyFactory(PersistentClass persistentClass, Getter idGetter, Setter idSetter) {
|
protected ProxyFactory buildProxyFactory(PersistentClass persistentClass, Getter idGetter, Setter idSetter) {
|
||||||
// determine the id getter and setter methods from the proxy interface (if any)
|
// determine the id getter and setter methods from the proxy interface (if any)
|
||||||
// determine all interfaces needed by the resulting proxy
|
// determine all interfaces needed by the resulting proxy
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We need to preserve the order of the interfaces they were put into the set, since javassist will choose the
|
* We need to preserve the order of the interfaces they were put into the set, since javassist will choose the
|
||||||
* first one's class-loader to construct the proxy class with. This is also the reason why HibernateProxy.class
|
* first one's class-loader to construct the proxy class with. This is also the reason why HibernateProxy.class
|
||||||
* should be the last one in the order (on JBossAS7 its class-loader will be org.hibernate module's class-
|
* should be the last one in the order (on JBossAS7 its class-loader will be org.hibernate module's class-
|
||||||
* loader, which will not see the classes inside deployed apps.
|
* loader, which will not see the classes inside deployed apps. See HHH-3078
|
||||||
*/
|
*/
|
||||||
Set<Class> proxyInterfaces = new java.util.LinkedHashSet<Class>();
|
Set<Class> proxyInterfaces = new java.util.LinkedHashSet<Class>();
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* Hibernate, Relational Persistence for Idiomatic Java
|
* Hibernate, Relational Persistence for Idiomatic Java
|
||||||
*
|
*
|
||||||
* Copyright (c) 2010, Red Hat Inc. or third-party contributors as
|
* Copyright (c) 2013, Red Hat Inc. or third-party contributors as
|
||||||
* indicated by the @author tags or express copyright attribution
|
* indicated by the @author tags or express copyright attribution
|
||||||
* statements applied by the authors. All third-party contributions are
|
* statements applied by the authors. All third-party contributions are
|
||||||
* distributed under license by Red Hat Inc.
|
* distributed under license by Red Hat Inc.
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
* 51 Franklin Street, Fifth Floor
|
* 51 Franklin Street, Fifth Floor
|
||||||
* Boston, MA 02110-1301 USA
|
* Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
package org.hibernate.test.proxyclass;
|
package org.hibernate.test.classloader;
|
||||||
|
|
||||||
import javax.persistence.Entity;
|
import javax.persistence.Entity;
|
||||||
import javax.persistence.Id;
|
import javax.persistence.Id;
|
Loading…
Reference in New Issue