ERROR [STDERR] java.lang.IllegalStateException: Illegal to call this method from injected, managed EntityManager
Wednesday, April 27, 2011
by
Iori Yagami
Got this error while trying to create a new entity? just remove the use of transaction. em.persist doesn't need it.
em.getTransaction().begin();
em.persist(entity);
em.getTransaction().commit();
0 comments:
Post a Comment