當我運行我的AccountIT測試時,我遇到了一個持續存在新帳戶的問題。該錯誤我得到的是:@OneToOne java堅持使用@entity
javax.persistence.PersistenceException: org.hibernate.PersistentObjectException: detached entity passed to persist: no.phasfjo.dto.Customer
我想它做的@OnToOne
註釋的東西,但我cannott弄清楚如何正確地改變呢?這已被保存(並且因此它有一個ID)的對象上entityManager.persist(...);
:
javax.persistence.PersistenceException:org.hibernate.PersistentObjectException:傳遞給persist的分離實體:no.phasfjo.dto.Customer。在no.phasfjo.infrastructure.account.JpaAccountDao.persist(JpaAccountDao.java:26), – Paul