I know I have to merge the entity before removing it, but I never thought I have to do it inside EJB. First I have these:
e = (Event) scholarBean.merge(e);
scholarBean.remove(e);
in my managed bean. It give me this error
java.lang.IllegalArgumentException: Entity must be managed to call remove: com.scholar.entity.Event@998, try merging the detached and try the remove again.
So then I bring those two lines inside my session bean, and it works. Any idea why?
Managed Bean
myEJB.deleteEvent(e);
and
myEJB.java
public void deleteEvent(Event e){
e = (Event) merge(e);
em.remove(e);
}
Not exactly. The object passed to remove has to be an entity and must not be detached. That’s different.
Let’s see what you’re doing:
So in
1:, you call an EJB (very likely with a transaction-scoped Persistence Context) that merges the entity. But then the method ends, the transaction commits, the Persistence Context gets closed, making the returned entity detached again.And in
2:, you pass the (still) detached entity to an EJB and tries toremoveit, which is not allowed. And KaBOOM!It works because you’re now working within the scope of the persistence context associated to the JTA transaction and you’re thus really passing a managed entity to
remove.