在Java中可以註釋類爲@Embeddable或將屬性設置爲@Embedded。示例代碼: @Embeddable class A{ ... } class B{ ... } @Entity class Foo { A a; @Embedded B b; } ...
確定! 回上一頁