ERROR [STDERR] java.lang.IllegalStateException: Illegal to call this method from injected, managed EntityManager

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