我有一个EntityVO
类,该类映射到Persistence Unit 'A'
。我无法同时编辑EntityVO
和Persistence Unit A
,因为它包装在依赖项jar中。因此,我创建了一个CustomEntityVO
并将其映射到Persistence unit B
。
现在的问题是,如果我尝试使用CustomEntityVO
合并entity manager of B
,它什么也不做,也不抛出任何异常。
这是我尝试合并的方式:
this.DAO.detach(customEntityVO);
customEntityVO= this.DAO.merge(customEntityVO);
this.DAO.merge(customEntityVO);
this.DAO.flush(customEntityVO);
我在方法上也有spring @Transactional(readOnly = false)注释,但是没有更新。 我不知道为什么。