gpt4 book ai didi

Java-JPA : How can I create a table for each subclass but not for superclass?

转载 作者:行者123 更新时间:2023-11-29 08:07:59 24 4
gpt4 key购买 nike

我的类结构如下:

abstract class A {
String a;
}

class B extends A {
String b;
}

class C extends A {
String c;
}

现在我希望 JPA 为每个子类创建一个表。

enter image description here

我看了一些以前的问题,但我很困惑。我如何映射这些类?

最佳答案

如果 A 由于映射而被继承并且您不需要单独的实体,您可以将其定义为 MappedSuperClass .映射父类(super class)仅用于继承映射,您不能查询它。

另一方面,如果需要真正的继承 - 取决于具体实现 - 你可以选择 table per (concrete) class继承策略。对该策略的支持是可选的,因此不能保证它适用于所有实现。它至少受新版本的支持

在您的情况下,需要的步骤是将以下内容添加到类 A:@Inheritance(strategy=InheritanceType.TABLE_PER_CLASS)

关于Java-JPA : How can I create a table for each subclass but not for superclass?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9853090/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com