2 Replies Latest reply on Nov 27, 2009 5:50 AM by meneghette

    Problem Using 1.2.1.GA-hibernate-3.3 Hibernate 3.3.0SP1 and

    meneghette

      Hi, I'm having a problem using envers

      I'm using 1.2.1.GA-hibernate-3.3 and Hibernate 3.3.0SP1 and JPA

      I Create a Class RevisionEntity instead using de default (using default it's works)

      Here is the Class

      package br.com.siq.gqfweb.sistema;
      
      import javax.persistence.Column;
      import javax.persistence.Entity;
      import javax.persistence.GeneratedValue;
      import javax.persistence.Id;
      
      import org.hibernate.envers.RevisionEntity;
      import org.hibernate.envers.RevisionNumber;
      import org.hibernate.envers.RevisionTimestamp;
      
      @Entity
      @RevisionEntity(AuditoriaRevEntityListener.class)
      public class AuditoriaRevEntity {
      
       @Id
       @GeneratedValue
       @RevisionNumber
       private int id;
      
       @RevisionTimestamp
       private long timestamp;
      
       @Column(name="USR")
       private Long idUsuario;
      
       public Long getIdUsuario() {
       return idUsuario;
       }
      
       public void setIdUsuario(Long idUsuario) {
       this.idUsuario = idUsuario;
       }
      
       public int getId() {
       return id;
       }
      
       public void setId(int id) {
       this.id = id;
       }
      
       public long getTimestamp() {
       return timestamp;
       }
      
       public void setTimestamp(long timestamp) {
       this.timestamp = timestamp;
       }
      
      
      
      }
      
      


      When I deploy the application is giving me the following error :


      18:13:00,749 ERROR [STDERR] org.jboss.seam.InstantiationException: Could not instantiate Seam component: gqfWebEntityManagerFactory
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.Component.newInstance(Component.java:1986)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1876)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1843)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.Namespace.getComponentInstance(Namespace.java:55)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.Namespace.getComponentInstance(Namespace.java:50)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.el.SeamELResolver.resolveBase(SeamELResolver.java:166)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.el.SeamELResolver.getValue(SeamELResolver.java:53)
      18:13:00,750 ERROR [STDERR] at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:53)
      18:13:00,750 ERROR [STDERR] at org.jboss.el.parser.AstIdentifier.getValue(AstIdentifier.java:44)
      18:13:00,750 ERROR [STDERR] at org.jboss.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:186)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.core.Expressions$1.getValue(Expressions.java:111)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.persistence.ManagedPersistenceContext.getEntityManagerFactoryFromJndiOrValueBinding(ManagedPersistenceContext.java:236)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.persistence.ManagedPersistenceContext.initEntityManager(ManagedPersistenceContext.java:79)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.persistence.ManagedPersistenceContext.getEntityManager(ManagedPersistenceContext.java:108)
      18:13:00,750 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      18:13:00,750 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      18:13:00,750 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,750 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.util.Reflections.invoke(Reflections.java:21)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.util.Reflections.invokeAndWrap(Reflections.java:125)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.Component.callComponentMethod(Component.java:2092)
      18:13:00,750 ERROR [STDERR] at org.jboss.seam.Component.unwrap(Component.java:2118)
      18:13:00,751 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1890)
      18:13:00,751 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1843)
      18:13:00,751 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1837)
      18:13:00,751 ERROR [STDERR] at aop.ExceptionsAOP.configura(ExceptionsAOP.aj:190)
      18:13:00,751 ERROR [STDERR] at aop.ExceptionsAOP.ajc$inlineAccessMethod$aop_ExceptionsAOP$aop_ExceptionsAOP$configura(ExceptionsAOP.aj:1)
      18:13:00,751 ERROR [STDERR] at br.com.siq.gqfweb.sistema.GerenciadorSistema.carregaParametrosSistema_aroundBody31$advice(GerenciadorSistema.java:184)
      18:13:00,751 ERROR [STDERR] at br.com.siq.gqfweb.sistema.GerenciadorSistema.carregaParametrosSistema_aroundBody32(GerenciadorSistema.java:1)
      18:13:00,751 ERROR [STDERR] at br.com.siq.gqfweb.sistema.GerenciadorSistema.carregaParametrosSistema_aroundBody33$advice(GerenciadorSistema.java:137)
      18:13:00,751 ERROR [STDERR] at br.com.siq.gqfweb.sistema.GerenciadorSistema.carregaParametrosSistema(GerenciadorSistema.java:1)
      18:13:00,751 ERROR [STDERR] at br.com.siq.gqfweb.sistema.GerenciadorSistema.getCliente_aroundBody0(GerenciadorSistema.java:34)
      18:13:00,751 ERROR [STDERR] at br.com.siq.gqfweb.sistema.GerenciadorSistema.getCliente_aroundBody1$advice(GerenciadorSistema.java:137)
      18:13:00,751 ERROR [STDERR] at br.com.siq.gqfweb.sistema.GerenciadorSistema.getCliente(GerenciadorSistema.java:1)
      18:13:00,751 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      18:13:00,751 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      18:13:00,751 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,751 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,751 ERROR [STDERR] at org.jboss.seam.util.Reflections.invoke(Reflections.java:21)
      18:13:00,751 ERROR [STDERR] at org.jboss.seam.intercept.RootInvocationContext.proceed(RootInvocationContext.java:31)
      18:13:00,751 ERROR [STDERR] at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:56)
      18:13:00,751 ERROR [STDERR] at org.jboss.seam.transaction.RollbackInterceptor.aroundInvoke(RollbackInterceptor.java:31)
      18:13:00,751 ERROR [STDERR] at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
      18:13:00,751 ERROR [STDERR] at org.jboss.seam.core.BijectionInterceptor.aroundInvoke(BijectionInterceptor.java:46)
      18:13:00,752 ERROR [STDERR] at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
      18:13:00,752 ERROR [STDERR] at org.jboss.seam.core.MethodContextInterceptor.aroundInvoke(MethodContextInterceptor.java:42)
      18:13:00,752 ERROR [STDERR] at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
      18:13:00,752 ERROR [STDERR] at org.jboss.seam.intercept.RootInterceptor.invoke(RootInterceptor.java:107)
      18:13:00,752 ERROR [STDERR] at org.jboss.seam.intercept.JavaBeanInterceptor.interceptInvocation(JavaBeanInterceptor.java:166)
      18:13:00,752 ERROR [STDERR] at org.jboss.seam.intercept.JavaBeanInterceptor.invoke(JavaBeanInterceptor.java:102)
      18:13:00,752 ERROR [STDERR] at br.com.siq.gqfweb.sistema.GerenciadorSistema_$$_javassist_0.getCliente(GerenciadorSistema_$$_javassist_0.java)
      18:13:00,752 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      18:13:00,752 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      18:13:00,752 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,752 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,752 ERROR [STDERR] at org.jboss.el.util.ReflectionUtil.invokeMethod(ReflectionUtil.java:329)
      18:13:00,752 ERROR [STDERR] at org.jboss.el.util.ReflectionUtil.invokeMethod(ReflectionUtil.java:274)
      18:13:00,752 ERROR [STDERR] at org.jboss.el.parser.AstMethodSuffix.getValue(AstMethodSuffix.java:59)
      18:13:00,752 ERROR [STDERR] at org.jboss.el.parser.AstValue.getValue(AstValue.java:67)
      18:13:00,752 ERROR [STDERR] at org.jboss.el.parser.AstDeferredExpression.getValue(AstDeferredExpression.java:26)
      18:13:00,752 ERROR [STDERR] at org.jboss.el.parser.AstCompositeExpression.getValue(AstCompositeExpression.java:31)
      18:13:00,752 ERROR [STDERR] at org.jboss.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:186)
      18:13:00,752 ERROR [STDERR] at org.jboss.seam.core.Expressions$1.getValue(Expressions.java:111)
      18:13:00,752 ERROR [STDERR] at org.jboss.seam.Component$ELInitialValue.getValue(Component.java:2370)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.Component$ListInitialValue.getValue(Component.java:2433)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.Component.initialize(Component.java:1392)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.Component.instantiateJavaBean(Component.java:1318)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.Component.instantiate(Component.java:1271)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.Component.newInstance(Component.java:1970)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1876)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1855)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1832)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.Component.getInstance(Component.java:1827)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.core.ResourceLoader.instance(ResourceLoader.java:97)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.navigation.Pages.initialize(Pages.java:102)
      18:13:00,753 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      18:13:00,753 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      18:13:00,753 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,753 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.util.Reflections.invoke(Reflections.java:21)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.util.Reflections.invokeAndWrap(Reflections.java:125)
      18:13:00,753 ERROR [STDERR] at org.jboss.seam.Component.callComponentMethod(Component.java:2092)
      18:13:00,754 ERROR [STDERR] at org.jboss.seam.Component.callCreateMethod(Component.java:2015)
      18:13:00,754 ERROR [STDERR] at org.jboss.seam.Component.newInstance(Component.java:1976)
      18:13:00,754 ERROR [STDERR] at org.jboss.seam.contexts.Contexts.startup(Contexts.java:304)
      18:13:00,754 ERROR [STDERR] at org.jboss.seam.contexts.Contexts.startup(Contexts.java:278)
      18:13:00,754 ERROR [STDERR] at org.jboss.seam.contexts.ServletLifecycle.endInitialization(ServletLifecycle.java:95)
      18:13:00,754 ERROR [STDERR] at org.jboss.seam.init.Initialization.init(Initialization.java:596)
      18:13:00,754 ERROR [STDERR] at org.jboss.seam.servlet.SeamListener.contextInitialized(SeamListener.java:34)
      18:13:00,754 ERROR [STDERR] at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3856)
      18:13:00,754 ERROR [STDERR] at org.apache.catalina.core.StandardContext.start(StandardContext.java:4361)
      18:13:00,754 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:790)
      18:13:00,754 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:770)
      18:13:00,754 ERROR [STDERR] at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:553)
      18:13:00,754 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      18:13:00,754 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      18:13:00,754 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,754 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,754 ERROR [STDERR] at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.java:296)
      18:13:00,754 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
      18:13:00,754 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
      18:13:00,754 ERROR [STDERR] at org.apache.catalina.core.StandardContext.init(StandardContext.java:5312)
      18:13:00,754 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      18:13:00,754 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      18:13:00,754 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,754 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,754 ERROR [STDERR] at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.java:296)
      18:13:00,754 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
      18:13:00,754 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
      18:13:00,755 ERROR [STDERR] at org.jboss.web.tomcat.service.TomcatDeployer.performDeployInternal(TomcatDeployer.java:301)
      18:13:00,755 ERROR [STDERR] at org.jboss.web.tomcat.service.TomcatDeployer.performDeploy(TomcatDeployer.java:104)
      18:13:00,755 ERROR [STDERR] at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:375)
      18:13:00,755 ERROR [STDERR] at org.jboss.web.WebModule.startModule(WebModule.java:83)
      18:13:00,755 ERROR [STDERR] at org.jboss.web.WebModule.startService(WebModule.java:61)
      18:13:00,755 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
      18:13:00,755 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
      18:13:00,755 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
      18:13:00,755 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,755 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,755 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
      18:13:00,756 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
      18:13:00,756 ERROR [STDERR] at $Proxy0.start(Unknown Source)
      18:13:00,756 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
      18:13:00,756 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
      18:13:00,756 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,756 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
      18:13:00,756 ERROR [STDERR] at $Proxy44.start(Unknown Source)
      18:13:00,756 ERROR [STDERR] at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:466)
      18:13:00,756 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      18:13:00,756 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      18:13:00,756 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,756 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
      18:13:00,756 ERROR [STDERR] at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
      18:13:00,757 ERROR [STDERR] at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
      18:13:00,757 ERROR [STDERR] at org.jboss.wsf.container.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:87)
      18:13:00,757 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
      18:13:00,757 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
      18:13:00,757 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
      18:13:00,757 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
      18:13:00,757 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
      18:13:00,757 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
      18:13:00,757 ERROR [STDERR] at $Proxy45.start(Unknown Source)
      18:13:00,758 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
      18:13:00,758 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
      18:13:00,758 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
      18:13:00,758 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor20.invoke(Unknown Source)
      18:13:00,758 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,758 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,758 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
      18:13:00,758 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
      18:13:00,758 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
      18:13:00,758 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
      18:13:00,758 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
      18:13:00,758 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
      18:13:00,758 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
      18:13:00,758 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
      18:13:00,758 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
      18:13:00,758 ERROR [STDERR] at $Proxy9.deploy(Unknown Source)
      18:13:00,758 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
      18:13:00,758 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
      18:13:00,758 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
      18:13:00,758 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
      18:13:00,758 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
      18:13:00,758 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
      18:13:00,758 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
      18:13:00,758 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,758 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,759 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
      18:13:00,759 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
      18:13:00,759 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
      18:13:00,760 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
      18:13:00,760 ERROR [STDERR] at $Proxy0.start(Unknown Source)
      18:13:00,760 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
      18:13:00,760 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
      18:13:00,760 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,760 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
      18:13:00,760 ERROR [STDERR] at $Proxy4.start(Unknown Source)
      18:13:00,760 ERROR [STDERR] at org.jboss.deployment.SARDeployer.start(SARDeployer.java:304)
      18:13:00,760 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
      18:13:00,760 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
      18:13:00,760 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
      18:13:00,760 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
      18:13:00,760 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      18:13:00,760 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      18:13:00,760 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,760 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
      18:13:00,760 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
      18:13:00,761 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
      18:13:00,761 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
      18:13:00,761 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
      18:13:00,761 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
      18:13:00,761 ERROR [STDERR] at $Proxy5.deploy(Unknown Source)
      18:13:00,761 ERROR [STDERR] at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
      18:13:00,761 ERROR [STDERR] at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
      18:13:00,761 ERROR [STDERR] at org.jboss.Main.boot(Main.java:200)
      18:13:00,761 ERROR [STDERR] at org.jboss.Main$1.run(Main.java:508)
      18:13:00,761 ERROR [STDERR] at java.lang.Thread.run(Thread.java:595)
      18:13:00,762 ERROR [STDERR] Caused by: java.lang.RuntimeException: exception invoking: startup
      18:13:00,762 ERROR [STDERR] at org.jboss.seam.util.Reflections.invokeAndWrap(Reflections.java:135)
      18:13:00,762 ERROR [STDERR] at org.jboss.seam.Component.callComponentMethod(Component.java:2100)
      18:13:00,763 ERROR [STDERR] at org.jboss.seam.Component.callCreateMethod(Component.java:2015)
      18:13:00,763 ERROR [STDERR] at org.jboss.seam.Component.newInstance(Component.java:1976)
      18:13:00,763 ERROR [STDERR] ... 223 more
      18:13:00,764 ERROR [STDERR] Caused by: java.lang.reflect.InvocationTargetException
      18:13:00,764 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      18:13:00,764 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      18:13:00,764 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      18:13:00,764 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
      18:13:00,764 ERROR [STDERR] at org.jboss.seam.util.Reflections.invoke(Reflections.java:21)
      18:13:00,764 ERROR [STDERR] at org.jboss.seam.util.Reflections.invokeAndWrap(Reflections.java:125)
      18:13:00,764 ERROR [STDERR] ... 226 more
      18:13:00,765 ERROR [STDERR] Caused by: java.lang.VerifyError: (class: br/com/siq/gqfweb/sistema/AuditoriaRevEntity, method: getId signature: ()Ljava/lang/Object;) Expecting to find object/array on stack
      18:13:00,765 ERROR [STDERR] at java.lang.Class.getDeclaredMethods0(Native Method)
      18:13:00,765 ERROR [STDERR] at java.lang.Class.privateGetDeclaredMethods(Class.java:2395)
      18:13:00,765 ERROR [STDERR] at java.lang.Class.getDeclaredMethods(Class.java:1763)
      18:13:00,765 ERROR [STDERR] at org.hibernate.annotations.common.reflection.java.JavaXClass.getDeclaredMethodProperties(JavaXClass.java:89)
      18:13:00,765 ERROR [STDERR] at org.hibernate.annotations.common.reflection.java.JavaXClass.getDeclaredProperties(JavaXClass.java:106)
      18:13:00,765 ERROR [STDERR] at org.hibernate.annotations.common.reflection.java.JavaXClass.getDeclaredProperties(JavaXClass.java:98)
      18:13:00,765 ERROR [STDERR] at org.hibernate.cfg.AnnotationBinder.addElementsOfAClass(AnnotationBinder.java:1023)
      18:13:00,765 ERROR [STDERR] at org.hibernate.cfg.AnnotationBinder.getElementsToProcess(AnnotationBinder.java:859)
      18:13:00,765 ERROR [STDERR] at org.hibernate.cfg.AnnotationBinder.bindClass(AnnotationBinder.java:666)
      18:13:00,765 ERROR [STDERR] at org.hibernate.cfg.AnnotationConfiguration.processArtifactsOfType(AnnotationConfiguration.java:529)
      18:13:00,765 ERROR [STDERR] at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:281)
      18:13:00,765 ERROR [STDERR] at org.hibernate.cfg.Configuration.buildMappings(Configuration.java:1148)
      18:13:00,765 ERROR [STDERR] at org.hibernate.ejb.Ejb3Configuration.buildMappings(Ejb3Configuration.java:1226)
      18:13:00,765 ERROR [STDERR] at org.hibernate.ejb.EventListenerConfigurator.configure(EventListenerConfigurator.java:159)
      18:13:00,765 ERROR [STDERR] at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:854)
      18:13:00,765 ERROR [STDERR] at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:191)
      18:13:00,765 ERROR [STDERR] at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:253)
      18:13:00,765 ERROR [STDERR] at org.hibernate.ejb.HibernatePersistence.createEntityManagerFactory(HibernatePersistence.java:125)
      18:13:00,765 ERROR [STDERR] at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:51)
      18:13:00,765 ERROR [STDERR] at org.jboss.seam.persistence.EntityManagerFactory.createEntityManagerFactory(EntityManagerFactory.java:85)
      18:13:00,765 ERROR [STDERR] at org.jboss.seam.persistence.EntityManagerFactory.startup(EntityManagerFactory.java:50)
      18:13:00,765 ERROR [STDERR] ... 232 more

      What can I do to Solve this ?

      Please, if you need more information tell me