58

在 hibernate 中使用 DiscriminatorValue 注释的最佳场景是什么时候?

4

4 回答 4

75

这两个链接最能帮助我理解继承概念:

http://docs.oracle.com/javaee/6/tutorial/doc/bnbqn.html

http://www.javaworld.com/javaworld/jw-01-2008/jw-01-jpa1.html?page=6

要了解判别器,首先必须了解继承策略:SINGLE_TABLE、JOINED、TABLE_PER_CLASS。

鉴别器通常用于 SINGLE_TABLE 继承,因为您需要一个列来标识记录的类型。

示例:您有一个 Student 类和 2 个子类:GoodStudent 和 BadStudent。Good 和 BadStudent 数据都将存储在 1 个表中,但当然我们需要知道类型,这就是 (DiscriminatorColumn 和) DiscriminatorValue 将出现的时间。

注释学生类

@Entity
@Table(name ="Student")
@Inheritance(strategy=SINGLE_TABLE)
@DiscriminatorColumn(discriminatorType = DiscriminatorType.STRING,
    name = "Student_Type")
public class Student{
     private int id;
     private String name;
}

坏学生班

@Entity
@DiscriminatorValue("Bad Student")
public class BadStudent extends Student{ 
 //code here
}

好学生班

@Entity
@DiscriminatorValue("Good Student")
public class GoodStudent extends Student{ 
//code here
}

所以现在Student表将有一个名为Student_Type的列,并将在其中保存 Student 的DiscriminatorValue

-----------------------
id|Student_Type || Name |
--|---------------------|
1 |Good Student || Ravi |
2 |Bad Student  || Sham |
-----------------------

请参阅我在上面发布的链接。

于 2013-05-28T02:26:37.050 回答
51

让我用一个例子给你解释一下。假设您有一个名为 Animal 的类,并且在 Animal 类下有许多子类,例如 Reptile、Bird ...等。

在数据库中,您有一个名为ANIMAL

---------------------------
ID||NAME      ||TYPE     ||
---------------------------
1 ||Crocodile ||REPTILE  ||
---------------------------
2 ||Dinosaur  ||REPTILE  ||
---------------------------
3 ||Lizard    ||REPTILE  || 
---------------------------
4 ||Owl       ||BIRD     ||
---------------------------
5 ||parrot    ||BIRD     ||
---------------------------

此处该列TYPE称为 DiscriminatorColumn ,因为该列包含明确区分 Reptiles 和 Birds 的数据。并且数据REPTILEBIRDTYPE是DiscriminatorValue。

所以在java部分这个结构看起来像:

动物类:

@Getter
@Setter
@Table(name = "ANIMAL")
@Entity
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(discriminatorType = DiscriminatorType.STRING, name = "TYPE")
public class Animal {

    @Id
    @Column(name = "ID")
    private String id;

    @Column(name = "NAME")
    private String name;

}

爬虫类:

@Entity
@DiscriminatorValue("REPTILE")
public class Reptile extends Animal {

}

鸟类:

@Entity
@DiscriminatorValue("BIRD")
public class Bird extends Animal {

}
于 2018-01-24T06:16:13.317 回答
8

当您使用单表策略进行实体继承,并且您希望鉴别器列的值不是实体具体类的类名称时,或者当鉴别器列的类型不是 STRING 时。

这在javadoc中通过示例进行了解释。

于 2013-05-27T11:42:38.373 回答
0

这是每个类层次结构的休眠表的解释和一个示例,假设我们有名为 Payment 的基类和 2 个派生类,如 CreditCard、Check

如果我们保存派生类对象,如 CreditCard 或 Check,那么 Payment 类对象也会自动保存到数据库中,并且在数据库中,所有数据将只存储在一个表中,这肯定是基类表。

但是这里我们必须在数据库中使用一个额外的鉴别器列,只是为了识别表中保存了哪个派生类对象以及基类对象,如果我们不使用该列,hibernate会抛出异常

于 2016-10-27T02:28:07.340 回答