hibernate の @Embeddable クラスで @Embedded を使用できますか。
例 : A は別のクラスの要素コレクションです。
@Embeddable
class A {
@Embedded
B b;
}
@Embeddable
class B {
@Embedded
C c;
}
@Embeddable
class C {
@Embedded
D D;
}
@Embeddable
class D {
}
この種のものは hibernate で有効ですか? ネストの第 3 レベル。