Javassist « Exception « JPA Q&A





1. Hibernate Envers and "Javassist Enhancement failed" Exception    stackoverflow.com

We are using Hibernate Envers and have the following situation: A class BusinessObjectType and a class Identity with a reference to BusinessObjectType:

@Entity
@Table( name = "ID_IDENTITY" )
@Audited
public class Identity {

    ...

3. org.hibernate.HibernateException: Javassist Enhancement fail    forum.hibernate.org

I got this exception when i try do execute a hql query: Looks like it does not find org/hibernate/proxy/HibernateProxy: org.hibernate.HibernateException: Javassist Enhancement failed: com.dsdatafashion.domain.persistence.hibernate.Dvs at org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.getProxy(JavassistLazyInitializer.java:88) at org.hibernate.proxy.pojo.javassist.SerializableProxy.readResolve(SerializableProxy.java:54) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at java.io.ObjectStreamClass.invokeReadResolve(ObjectStreamClass.java:1061) at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1762) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329) at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1945) at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1869) at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351) at java.util.ArrayList.readObject(ArrayList.java:593) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at ...

4. org.hibernate.HibernateException:Javassist EnhancementFailed    forum.hibernate.org

Im using Hibernate 3 with JBOSS 4.2.1 GA and get this error while executing a simple query : 12:34:06,611 ERROR [STDERR] org.hibernate.HibernateException: Javassist Enhancement failed: com.MyCompany.MyApp.cube.hibernate.CubeQuery at org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.getProxy(JavassistLazyInitializer.java:118) at org.hibernate.proxy.pojo.javassist.JavassistProxyFactory.getProxy(JavassistProxyFactory.java:48) at org.hibernate.tuple.entity.AbstractEntityTuplizer.createProxy(AbstractEntityTuplizer.java:379) at org.hibernate.persister.entity.AbstractEntityPersister.createProxy(AbstractEntityPersister.java:3460) at org.hibernate.event.def.DefaultLoadEventListener.createProxyIfNecessary(DefaultLoadEventListener.java:257) at org.hibernate.event.def.DefaultLoadEventListener.proxyOrLoad(DefaultLoadEventListener.java:191) at org.hibernate.event.def.DefaultLoadEventListener.onLoad(DefaultLoadEventListener.java:103) at org.hibernate.impl.SessionImpl.fireLoad(SessionImpl.java:878) at org.hibernate.impl.SessionImpl.internalLoad(SessionImpl.java:846) at org.hibernate.type.EntityType.resolveIdentifier(EntityType.java:557) at org.hibernate.type.EntityType.resolve(EntityType.java:379) at org.hibernate.type.EntityType.nullSafeGet(EntityType.java:204) at org.hibernate.impl.IteratorImpl.next(IteratorImpl.java:112) at com.MyCompany.MyApp.cube.ajax.AjaxServlet.doPost(Unknown Source) at com.MyCompany.MyApp.cube.ajax.AjaxServlet.doGet(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:690) at ...

5. java.lang.ClassNotFoundException: javassist.util.proxy.Metho    forum.hibernate.org

I have used Hibernate for several years, and recently tried to upgrade to the latest version, including the annotations package. However, there seems to be something wrong with the dependencies, that is the different jar files that need to be included to make it work. The files in the distribution, in the \lib\required folder, are obviously not enough, so I added ...

6. Javassist Exception    forum.hibernate.org

7. ClassCastException _$$_javassist_    forum.hibernate.org

Hi there! Last week I update the hibernate.jar from version 3.2 to 3.3.2-GA. Unfortunately, I get an error about class cast and _$$javassit_ with a super class (First time I use inheritance with hibernate). With hibernate 3.2 everything was working just right. I have a super class called AFEPlaza with two subclasses: CentroCostoAFEPuesto and ProyectoInstitucionalAFEPuesto. This is the code line where ...