[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: em.refresh() throwing error in JBoss AS 4.0.5.GA
tnevaker
do-not-reply at jboss.com
Wed Feb 14 17:54:34 EST 2007
I believe I may have found my problem. By changing the PersistenceContext in my SFSB from this:
@PersistenceContext(unitName="warehaus")
| protected EntityManager em;
to this:
@PersistenceContext(unitName="warehaus", type=PersistenceContextType.EXTENDED)
| protected EntityManager em;
it now appears to be working without throwing an error. Apparently in 4.0.4.GA the PersistenceContext was extended by default, now it has to be specifically set as extended, I'm guessing?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4016714#4016714
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4016714
More information about the jboss-user
mailing list