と の 2 つのエンティティがAccount
ありAccountRole
ます。
public class Account {
private AccountRole accountRole;
@ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.EAGER)
public AccountRole getAccountRole() {
return accountRole;
}
.
public class AccountRole {
private Collection<Account> accounts = new ArrayList<Account>();
@OneToMany(mappedBy = "accountRole", fetch = FetchType.EAGER)
public Collection<Account> getAccounts() {
return accounts;
}
問題は、データベースから accountRole を取得し、自分のAccount
. この時点で、アカウントを作成したばかりで、ロールは既に db に存在します。
AccountRole role = accountService.getRoleFromDatabase(AccountRoles.ROLE_USER);
account.setAccountRole(role);
//setting both ways, as suggested
public void setAccountRole(AccountRole accountRole) {
accountRole.addAccount(this);
this.accountRole = accountRole;
}
entityManager.persist(account); // finally in my DAO
私はこれを読みました: JPA/Hibernate: detached entity passed to persist そして、私が理解したことは、エンティティの値を両方向から設定する必要があるため、セッターで行っていることです。
それでもエラーが発生します。
org.hibernate.PersistentObjectException: detached entity passed to persist: foo.bar.pojo.AccountRole