状況は次のとおりです。2つのエンティティトレーダーとクライアントがあります:-1つのクライアントが1つのトレーダーに関連付けられています-1つのトレーダーが1つまたは複数のクライアントに関連付けられ、EntityManager.remove(t)を使用してトレーダーを削除してからコミットすると、すべてのクライアントが解放されますそのトレーダーに自動的に削除されます。カスケード削除なので問題ありません。質問 :
1-トレーダーを削除して、そのクライアントを他のトレーダーに再影響させるにはどうすればよいですか?
2-ソリューションはmySQLでカスケード効果を無効にすることにありますか、それともentityManagerとMySQLの両方にありますか?助けてくれてありがとう。
クライアントエンティティ
public class Client implements Serializable {
@Transient
private PropertyChangeSupport changeSupport = new PropertyChangeSupport(this);
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Basic(optional = false)
@Column(name = "id_client")
private Integer idClient;
@Column(name = "id_portefeuille")
private Integer idPortefeuille;
@Column(name = "id_entreprise")
private Integer idEntreprise;
@Column(name = "id_trader")
private Integer idTrader;
//other attributes
@JoinColumn(name = "id_trader", referencedColumnName = "id_trader", updatable = false, insertable = false)
@ManyToOne
private Trader idTrader2;
//getters and setters
トレーダーエンティティ
public class Trader implements Serializable {
@Transient
private PropertyChangeSupport changeSupport = new PropertyChangeSupport(this);
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Basic(optional = false)
@Column(name = "id_trader")
private Integer idTrader;
@Column(name = "nom")
//other attributes
@OneToMany(cascade = CascadeType.ALL, mappedBy = "idTrader2")
private Collection<Client> clientCollection;
//getters and setters
メインコード
//Getting The trader selected in a JTable
Trader t = traderList.get(tableTrader.getSelectedRow());
for (Iterator<Client> it = t.getClientCollection().iterator(); it.hasNext(); ) {
//Getting the Clients releated to this trader
Client c = it.next();
//Affecting the client to an other trader
// i chose an existing one randomly
c.setIdTrader2(traderList.get(2));
traderList.get(2).getClientCollection().add(c);
it.remove();
}
entityManager.flush();
entityManager.remove(t);
}