Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
eclipselinkでONUPDATECASCADEを使用して外部キーを作成する方法。誰かがそのような外部キーを作成する方法を説明できますか
この機能はeclipselinkで利用できますか?
srini
更新をカスケードする場合は、これらのプロパティcascade=CascadeType.ALLまたはcascade=CascadeType.MERGEを使用できます。サンプルを参照してください。
@Entity class Employee { @OneToOne(cascade=CascadeType.ALL) private Address address; }