Hi All,
Hibernate 3.2.4
JBoss 4.2.3
Firstly let me say I have solved this issue and I'm really looking for clarification as to the reason for the problem.
So I received a pretty standard stacktrace;
Code:
org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: com.ecebs.multefile.configurator.validation.entities.Capability.properties, no session or session was closed
at org.hibernate.collection.AbstractPersistentCollection.throwLazyInitializationException(AbstractPersistentCollection.java:358)
at org.hibernate.collection.AbstractPersistentCollection.throwLazyInitializationExceptionIfNotConnected(AbstractPersistentCollection.java:350)
at org.hibernate.collection.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:343)
at org.hibernate.collection.AbstractPersistentCollection.read(AbstractPersistentCollection.java:86)
at org.hibernate.collection.PersistentBag.iterator(PersistentBag.java:249)
at com.ecebs.multefile.configurator.entities.ApplicationPlatform.findCapabilityProperty(ApplicationPlatform.java:254)
at com.ecebs.multefile.configurator.cardupdatemanager.personalisabledata.entities.CardPersonalisationData.buildDistributedScript(CardPersonalisationData.java:133)
at com.ecebs.multefile.configurator.cardupdatemanager.personalisabledata.PersonalisationDataHandler.buildPersonalisableData(PersonalisationDataHandler.java:140)
at com.ecebs.multefile.configurator.cardupdatemanager.MultefileCardUpdateBuilder.buildCardUpdate(MultefileCardUpdateBuilder.java:231)
at com.ecebs.multefile.configurator.cardupdatemanager.MultefileCardUpdateBuilder.buildCardUpdates(MultefileCardUpdateBuilder.java:146)
at com.ecebs.multefile.configurator.cardupdatemanager.MultefileCardUpdateBuilder.buildCardUpdates(MultefileCardUpdateBuilder.java:105)
at com.ecebs.multefile.configurator.cardupdatemanager.CardUpdateManagerBean.getIssueAssets(CardUpdateManagerBean.java:310)
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 org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:112)
at org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:166)
at org.jboss.ejb3.interceptor.EJB3InterceptorsInterceptor.invoke(EJB3InterceptorsInterceptor.java:63)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
at org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor.invoke(TransactionScopedEntityManagerInterceptor.java:54)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
at org.jboss.ejb3.AllowedOperationsInterceptor.invoke(AllowedOperationsInterceptor.java:47)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
at org.jboss.aspects.tx.TxPolicy.invokeInOurTx(TxPolicy.java:79)
at org.jboss.aspects.tx.TxInterceptor$Required.invoke(TxInterceptor.java:191)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
at org.jboss.aspects.tx.TxPropagationInterceptor.invoke(TxPropagationInterceptor.java:95)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
at org.jboss.ejb3.stateless.StatelessInstanceInterceptor.invoke(StatelessInstanceInterceptor.java:62)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
at org.jboss.aspects.security.AuthenticationInterceptor.invoke(AuthenticationInterceptor.java:77)
at org.jboss.ejb3.security.Ejb3AuthenticationInterceptor.invoke(Ejb3AuthenticationInterceptor.java:110)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
at org.jboss.ejb3.ENCPropagationInterceptor.invoke(ENCPropagationInterceptor.java:46)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
at org.jboss.ejb3.asynchronous.AsynchronousInterceptor.invoke(AsynchronousInterceptor.java:106)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
at org.jboss.ejb3.stateless.StatelessContainer.dynamicInvoke(StatelessContainer.java:304)
at org.jboss.aop.Dispatcher.invoke(Dispatcher.java:106)
at org.jboss.aspects.remoting.AOPRemotingInvocationHandler.invoke(AOPRemotingInvocationHandler.java:82)
at org.jboss.remoting.ServerInvoker.invoke(ServerInvoker.java:809)
at org.jboss.remoting.transport.socket.ServerThread.processInvocation(ServerThread.java:608)
at org.jboss.remoting.transport.socket.ServerThread.dorun(ServerThread.java:406)
at org.jboss.remoting.transport.socket.ServerThread.run(ServerThread.java:173)
Under the following circumstances;
Single EntityManager
Call to SessionBeanA.create() method
Delegates lookup of existing entityA to SessionBeanB (via remote interface)
Still inside SessionBeanA.create() method associate entityA with newly created entityB, persist.
Still inside SessionBeanA.create() I try and access collection associated with entityA
I get the exception above!
When I change the call to SessionBeanB to use a local interface the problem is resolved.
I know that SessionBeanB uses the existing transaction created in SessionBeanA.create(), however apparently it is diffferent sessions!
1. Is my assumption correct?
2. If not does anyone know the real reason?