码迷,mamicode.com
首页 > 移动开发 > 详细

JavaPersistenceWithHibernate第二版笔记-第六章-Mapping inheritance-004Table per class hierarchy(@Inheritance..SINGLE_TABLE)、@DiscriminatorColumn、@DiscriminatorValue、@DiscriminatorFormula)

时间:2016-04-07 22:13:04      阅读:423      评论:0      收藏:0      [点我收藏+]

标签:

一、结构

You can map an entire class hierarchy to a single table. This table includes columns for all properties of all classes in the hierarchy. The value of an extra type discriminator column or formula identifies the concrete subclass represented by a particular row. Figure 6.2 shows this approach.

技术分享

二、代码

1.

 1 package org.jpwh.model.inheritance.singletable;
 2 
 3 import org.jpwh.model.Constants;
 4 
 5 import javax.persistence.Column;
 6 import javax.persistence.DiscriminatorColumn;
 7 import javax.persistence.Entity;
 8 import javax.persistence.GeneratedValue;
 9 import javax.persistence.Id;
10 import javax.persistence.Inheritance;
11 import javax.persistence.InheritanceType;
12 import javax.validation.constraints.NotNull;
13 
14 @Entity
15 @Inheritance(strategy = InheritanceType.SINGLE_TABLE)
16 @DiscriminatorColumn(name = "BD_TYPE")
17 public abstract class BillingDetails {
18 
19     @Id
20     @GeneratedValue(generator = Constants.ID_GENERATOR)
21     protected Long id;
22 
23     @NotNull // Ignored by Hibernate for schema generation!
24     @Column(nullable = false)
25     protected String owner;
26 
27     // ...
28 
29     protected BillingDetails() {
30     }
31 
32     protected BillingDetails(String owner) {
33         this.owner = owner;
34     }
35 
36     public Long getId() {
37         return id;
38     }
39 
40     public String getOwner() {
41         return owner;
42     }
43 
44     public void setOwner(String owner) {
45         this.owner = owner;
46     }
47 }

 

2.

 1 package org.jpwh.model.inheritance.singletable;
 2 
 3 import javax.persistence.DiscriminatorValue;
 4 import javax.persistence.Entity;
 5 import javax.validation.constraints.NotNull;
 6 
 7 @Entity
 8 @DiscriminatorValue("BA")
 9 public class BankAccount extends BillingDetails {
10 
11     @NotNull
12     protected String account;
13 
14     @NotNull
15     protected String bankName;
16 
17     @NotNull
18     protected String swift;
19 
20     public BankAccount() {
21         super();
22     }
23 
24     public BankAccount(String owner, String account, String bankName, String swift) {
25         super(owner);
26         this.account = account;
27         this.bankName = bankName;
28         this.swift = swift;
29     }
30 
31     public String getAccount() {
32         return account;
33     }
34 
35     public void setAccount(String account) {
36         this.account = account;
37     }
38 
39     public String getBankName() {
40         return bankName;
41     }
42 
43     public void setBankName(String bankName) {
44         this.bankName = bankName;
45     }
46 
47     public String getSwift() {
48         return swift;
49     }
50 
51     public void setSwift(String swift) {
52         this.swift = swift;
53     }
54 }

 

3.

 1 package org.jpwh.model.inheritance.singletable;
 2 
 3 import javax.persistence.DiscriminatorValue;
 4 import javax.persistence.Entity;
 5 import javax.validation.constraints.NotNull;
 6 
 7 @Entity
 8 @DiscriminatorValue("CC")
 9 public class CreditCard extends BillingDetails {
10 
11     @NotNull // Ignored by Hibernate for DDL generation!
12     protected String cardNumber;
13 
14     @NotNull
15     protected String expMonth;
16 
17     @NotNull
18     protected String expYear;
19 
20     // ...
21 
22     public CreditCard() {
23         super();
24     }
25 
26     public CreditCard(String owner, String cardNumber, String expMonth, String expYear) {
27         super(owner);
28         this.cardNumber = cardNumber;
29         this.expMonth = expMonth;
30         this.expYear = expYear;
31     }
32 
33     public String getCardNumber() {
34         return cardNumber;
35     }
36 
37     public void setCardNumber(String cardNumber) {
38         this.cardNumber = cardNumber;
39     }
40 
41     public String getExpMonth() {
42         return expMonth;
43     }
44 
45     public void setExpMonth(String expMonth) {
46         this.expMonth = expMonth;
47     }
48 
49     public String getExpYear() {
50         return expYear;
51     }
52 
53     public void setExpYear(String expYear) {
54         this.expYear = expYear;
55     }
56 }

 

4.在无法改变表结构增加discriminator的情况下,可以使用Hibernate的扩展注解@DiscriminatorFormula,底层是利用数据库的case when 语句

 1 package org.jpwh.model.inheritance.singletableformula;
 2 
 3 import org.jpwh.model.Constants;
 4 
 5 import javax.persistence.Entity;
 6 import javax.persistence.GeneratedValue;
 7 import javax.persistence.Id;
 8 import javax.persistence.Inheritance;
 9 import javax.persistence.InheritanceType;
10 import javax.validation.constraints.NotNull;
11 
12 @Entity
13 @Inheritance(strategy = InheritanceType.SINGLE_TABLE)
14 @org.hibernate.annotations.DiscriminatorFormula(
15         "case when CARDNUMBER is not null then ‘CC‘ else ‘BA‘ end"
16 )
17 public abstract class BillingDetails {
18     // ...
19     @Id
20     @GeneratedValue(generator = Constants.ID_GENERATOR)
21     protected Long id;
22 
23     @NotNull
24     protected String owner;
25 
26     protected BillingDetails() {
27     }
28 
29     protected BillingDetails(String owner) {
30         this.owner = owner;
31     }
32 
33     public Long getId() {
34         return id;
35     }
36 
37     public String getOwner() {
38         return owner;
39     }
40 
41     public void setOwner(String owner) {
42         this.owner = owner;
43     }
44 }

 

三、SINGLE_TABLE的优缺点

1.优点

(1)This mapping strategy is a winner in terms of both performance and simplicity. It’s the best-performing way to represent polymorphism—both polymorphic and non-polymorphic queries perform well—and it’s even easy to write queries by hand. Ad hoc reporting is possible without complex joins or unions. Schema evolution is straightforward.

Hibernate generates the following  SQL for  select bd from BillingDetails bd :

 

1 select
2     ID, OWNER, EXPMONTH, EXPYEAR, CARDNUMBER,
3     ACCOUNT, BANKNAME, SWIFT, BD_TYPE
4 from
5     BILLINGDETAILS

 

To query the CreditCard subclass, Hibernate adds a restriction on the discriminator column:

 

1 select
2     ID, OWNER, EXPMONTH, EXPYEAR, CARDNUMBER
3 from
4     BILLINGDETAILS
5 where
6     BD_TYPE=‘CC‘

 

2.缺点

(1)the loss of NOT NULL constraints may be a serious problem from the point of view of data correctness. Imagine that an expiration date for credit cards is required, but your database schema can’t enforce this rule because all columns of the table can be NULL .

(2)Another important issue is normalization. You’ve created functional dependencies between non-key columns, violating the third normal form. As always, denormalization for performance reasons can be misleading, because it sacrifices long-term stability,maintainability, and the integrity of data for immediate gains that may be also achieved
by proper optimization of the SQL execution plans (in other words, ask your DBA ).

(3)considering denormalized schemas can become a major burden in the long term. Your DBA may not like it at all

(4)An implementation quirk of Hibernate requires that you declare nullability with @Column because Hibernate
ignores Bean Validation’s @NotNull when it generates the database schema.Hibernate ignores the @NotNull for schema DDL generation, but it observes it at runtime, before inserting a row.

 

JavaPersistenceWithHibernate第二版笔记-第六章-Mapping inheritance-004Table per class hierarchy(@Inheritance..SINGLE_TABLE)、@DiscriminatorColumn、@DiscriminatorValue、@DiscriminatorFormula)

标签:

原文地址:http://www.cnblogs.com/shamgod/p/5365600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!