下面是类定义
界面
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(文档)?