程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> J2EE >> Eclipse+JBoss+EJB3實體Bean的連接策略

Eclipse+JBoss+EJB3實體Bean的連接策略

編輯:J2EE

在上一篇文章中,使用單表策略將一個表從邏輯上分成了多個表。但這樣可能會造成空巢字段,也就是說,一個邏輯表只由部分字段組成,而物理的表的很多字段的值就會為null。為了解決這個問題,可以將t_accounts表物理地分成多個表。為了與t_accounts表進行對比,新建一個t_myaccounts表,結構如圖1所示。

t_myaccounts表
圖1 t_myaccounts表

從t_myaccounts的結構可以看出,在該表中只包含了t_accounts表的前三個字段,而後兩個在邏輯上分到了不同的表,因此,首先要建立兩個物理表:t_checkingaccount和t_savingsaccount。這兩個表的結構如下:

t_checkingaccount表
圖2 t_checkingaccount表
t_savingsaccount表
圖3 t_savingsaccount表

在t_checkingaccount和t_savingsaccount表中都有一個account_id,這個account_id的值依賴於t_myaccounts表中的account_id。

下面先來編寫與t_myaccounts對應的實體Bean,代碼如下:

  1. package entity;
  2. import Javax.persistence.Column;
  3. import Javax.persistence.DiscriminatorColumn;
  4. import Javax.persistence.Entity;
  5. import Javax.persistence.GeneratedValue;
  6. import Javax.persistence.GenerationType;
  7. import Javax.persistence.Id;
  8. import Javax.persistence.Inheritance;
  9. import Javax.persistence.InheritanceType;
  10. import Javax.persistence.Table;
  11. @Entity
  12. @Table(name="t_myaccounts")
  13. @Inheritance(strategy=InheritanceType.JOINED)
  14. public class Account
  15. {
  16. protected String id;
  17. protected float balance;
  18. protected String type;
  19. @Id
  20. @GeneratedValue(strategy=GenerationType.IDENTITY)
  21. @Column(name="account_id")
  22. public String getId()
  23. {
  24. return id;
  25. }
  26. public void setId(String id)
  27. {
  28. this.id = id;
  29. }
  30. public float getBalance()
  31. {
  32. return balance;
  33. }
  34. public void setBalance(float balance)
  35. {
  36. this.balance = balance;
  37. }
  38. @Column(name="account_type")
  39. public String getType()
  40. {
  41. return type;
  42. }
  43. public void setType(String type)
  44. {
  45. this.type = type;
  46. }
  47. }

從上面的代碼可以看出,只使用了@Inheritance對實體Bean進行注釋。

下面編寫MyCheckingAccount和MySavingsAccount類的代碼:

MyCheckingAccount類的代碼:

  1. package entity;
  2. import Javax.persistence.Column;
  3. import Javax.persistence.DiscriminatorValue;
  4. import Javax.persistence.Entity;
  5. import Javax.persistence.Id;
  6. import Javax.persistence.PrimaryKeyJoinColumn;
  7. import Javax.persistence.Table;
  8. @Entity
  9. @Table(name="t_checkingaccount")
  10. // 指定與Account類共享的主鍵名
  11. @PrimaryKeyJoinColumn(name="account_id")
  12. public class MyCheckingAccount extends Account
  13. {
  14. private double overdraftLimit;
  15. public MyCheckingAccount()
  16. {
  17. // 為account_type字段賦默認值
  18. setType("C");
  19. }
  20. @Column(name="overdraft_limit")
  21. public double getOverdraftLimit()
  22. {
  23. return overdraftLimit;
  24. }
  25. public void setOverdraftLimit(double overdraftLimit)
  26. {
  27. this.overdraftLimit = overdraftLimit;
  28. }
  29. }

MySavingsAccount類的代碼:

  1. package entity;
  2. import Javax.persistence.Column;
  3. import Javax.persistence.DiscriminatorValue;
  4. import Javax.persistence.Entity;
  5. import Javax.persistence.Id;
  6. import Javax.persistence.PrimaryKeyJoinColumn;
  7. import Javax.persistence.Table;
  8. @Entity
  9. @Table(name="t_savingsaccount")
  10. @PrimaryKeyJoinColumn(name="account_id")
  11. public class MySavingsAccount extends Account
  12. {
  13. private double interestRate;
  14. public MySavingsAccount()
  15. {
  16. // 為account_type字段賦默認值
  17. setType("S");
  18. }
  19. @Column(name="interest_rate")
  20. public double getInterestRate()
  21. {
  22. return interestRate;
  23. }
  24. public void setInterestRate(double interestRate)
  25. {
  26. this.interestRate = interestRate;
  27. }
  28. }

在上面的代碼中使用構造方法來初始化了t_myaccounts表的account_type字段的值。

可以使用下面的代碼進行測試:

  1. System.out.println(((MyCheckingAccount)em.createQuery("from MyCheckingAccount where id=12")
  2. .getSingleResult()).getBalance());
  3. MyCheckingAccount ca = new MyCheckingAccount();
  4. ca.setBalance(342);
  5. ca.setOverdraftLimit(120);
  6. em.persist(ca);
  7. MySavingsAccount sa = new MySavingsAccount();
  8. sa.setBalance(200);
  9. sa.setInterestRate(321);
  10. em.persist(sa);
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved