1

下面是类定义

界面

public interface myInterface{

    void myMethod1();

}

MyClass1 实现上述接口的类

 @Entity
 public class MyClass1 implements MyInterface{

    @Id
    private int id;
    private String field1;
    private String field2;

    // Getter and setter

}

MyClass2 实现上述接口的类

 @Entity
 public class MyClass2 implements MyInterface{

    @Id
    private int id;
    private String field3;
    private String field4;

    // Getter and setter

}

最后是具有类型参数列表的实体类。

@Entity
public class MyClass{

    @Id
    priviate int id;
    private String field5;
    private String field6;
    private List<? extends MyInterface> mylist;

    //getter and setter

}

我正在查看的生成的类如下所示。

我的班级表

-------------------------
id | field5 | field6
-------------------------
1  | abc    | def
2  | abc    | def
3  | abc    | def

MyClass1 表

-------------------------
id | field1 | field2 | myclass_fk
-------------------------
1  | abc    | def    | 2
2  | abc    | def    | 2
3  | abc    | def    | 1

MyClass2 表

-------------------------
id | field3 | field4 | myclass_fk
-------------------------
1  | abc    | def    | 3
2  | abc    | def    | 1
3  | abc    | def    | 1

我尝试@OneToMany在列表中使用 targetType 到 MyInterface 但它失败了,错误不是实体类。

编辑

可以使用 Hibernate OGM 实现吗,最好使用基于图形或 Mongo(文档)?

4

2 回答 2

0

问题是 Hibernate 在加载 MyClass 时不知道从哪个表加载“mylist”。看看https://docs.jboss.org/hibernate/orm/5.1/userguide/html_single/chapters/domain/inheritance.html

于 2017-05-22T21:21:18.210 回答
0

我可以使用@ManyToAny注释来实现这一点,尽管我需要修改类位。

于 2017-07-29T18:47:52.123 回答