JPA - InheritanceType.Joined生成错误的表

时间:2011-10-23 09:22:26

标签: java inheritance jpa eclipselink

我试图在数据库中表示一个可编辑的表,其中包含多个字段类型。 我的方法看起来像这样:

TABLES
- uuid //Primary key
- cols
- rows
- name  

VALUE
-col //Key element 
-row //Key element
-parent //Key element - table to witch the value belongs
-v_type //@DiscriminatorColumn

STRING_VALUE
-col //Key
-row //Key
-parent //Key
-value

这会继续增加一些价值类型。

我使用eclipselink 2.3将其映射如下:

Table.java

@SuppressWarnings("serial")
@Entity(name="TABLES")
public class Table implements Serializable{
    @Id @GeneratedValue(strategy=GenerationType.SEQUENCE)
    long uuid;
    String name;
    int rows=0,cols=0;
    @OneToMany(targetEntity=Value.class,mappedBy="parent",cascade={CascadeType.ALL},orphanRemoval=true)
    @OrderBy("row ASC")
    List<Value> values;

}

Value.java

@SuppressWarnings("serial")
@Entity
@IdClass(ValueId.class)
@Inheritance(strategy=InheritanceType.JOINED)
@DiscriminatorColumn(name="V_TYPE",length=1,discriminatorType=DiscriminatorType.STRING)
public abstract class Value implements Serializable{
    @Id
    @ManyToOne(cascade={CascadeType.ALL})
    @JoinColumn(name="PARENT")
    Table parent;
    @Id @Column(unique=false)
    int row;
    @Id @Column(unique=false)
    int col;
}

ValueId.java

@SuppressWarnings("serial")
public class ValueId implements Serializable{
    int row,col;
    long parent;
    // Getters setters etc
}

StringValue.java

@SuppressWarnings("serial")
@Entity
@DiscriminatorValue("S")
public class StringValue extends Value {
    String value;
}

但是这个实现产生了STRING_VALUE表 缺少[parent]字段。这很糟糕,因为我无法解决价值。

我做错了什么? ;) 我不能“谷歌解决”这个。

1 个答案:

答案 0 :(得分:2)

@Idparent字段上的Value注释应替换为@MapsId

但是,您可以通过在Value中使用技术性,非功能性,自动生成的ID来帮助自己,并让rowcol和{{1} } field是实体的常规字段。这肯定会使事情变得更加高效,并且更容易在应用程序的所有部分中使用。