gpt4 book ai didi

java - Hibernate 不将实体链接到 Generic

转载 作者:行者123 更新时间:2023-12-02 09:50:07 29 4
gpt4 key购买 nike

我有类模板:

@Entity
@Table(name = "templates")
public class Template extends AbstractEntity {

private List<AbstractField> fields;
}

它由字段组成,我得到任何类似的测验。

我有实体,它继承 AbstractField:

@Setter
@MappedSuperclass
public abstract class AbstractField extends AbstractEntity {

private FieldType fieldType;
private String title;
private Template template;
}

正如我们所见,我们有一个字段的抽象类(复选框、单选按钮等),所有字段都扩展了这个抽象字段,如下所示:

@Entity
@Table(name = "field_checkbox")
@Setter
@ToString
@EqualsAndHashCode(callSuper = true)
public class CheckBoxField extends AbstractField {

private Boolean selection = false;
}

我需要链接具有一对多依赖关系的字段。我是这样做的:

@Entity
@Table(name = "appeal_templates")
public class Template<F extends AbstractField> extends AbstractEntity {

private List<F> fields;

@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL, mappedBy = "template")
public List<F> getFields() {
return fields;
}
}

正如我们所见,我决定使用泛型来实现。我得到了异常(exception):

Caused by: org.hibernate.AnnotationException: Property ru.model.representation.appeal.template.Template.fields has an unbound type and no explicit target entity. Resolve this Generic usage issue or set an explicit target attribute (eg @OneToMany(target=) or use an explicit @Type

据我了解,Hibernate 不允许映射到泛型。但我计划存储多种类型的字段,扩展AbstractField。该怎么办?

最佳答案

不可能对子类使用不同的表。 Check this comment why

你可以做的是定义单表继承类型:

@Entity
@Table(name = "fields")
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
public abstract class AbstractField extends AbstractEntity {

private FieldType fieldType;
private String title;
private Template template;
}

然后你可以使用List<AbstractField> fieldsTemplate类。

关于java - Hibernate 不将实体链接到 Generic,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56379114/

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