JPA: question about merging an entity before removing it

前端 未结 3 677
春和景丽
春和景丽 2021-02-08 07:33

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);
schol         


        
3条回答
  •  北荒
    北荒 (楼主)
    2021-02-08 07:41

    I know I have to merge the entity before removing it

    Not exactly. The object passed to remove has to be an entity and must not be detached. That's different.

    but I never thought I have to do it inside EJB. First I have these (...)

    Let's see what you're doing:

    1: e = (Event) scholarBean.merge(e); 
    2: scholarBean.remove(e);
    

    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 to remove it, which is not allowed. And KaBOOM!

    So then I bring those two lines inside my session bean, and it works. Any idea why?

    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.

提交回复
热议问题