/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.userguide.inheritance; import java.math.BigDecimal; import java.util.List; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Inheritance; import javax.persistence.InheritanceType; import org.hibernate.jpa.test.BaseEntityManagerFunctionalTestCase; import org.junit.Test; import static org.hibernate.testing.transaction.TransactionUtil.doInJPA; /** * @author Vlad Mihalcea */ public class SingleTableTest extends BaseEntityManagerFunctionalTestCase { @Override protected Class<?>[] getAnnotatedClasses() { return new Class<?>[] { DebitAccount.class, CreditAccount.class, }; } @Test public void test() { doInJPA( this::entityManagerFactory, entityManager -> { //tag::entity-inheritance-single-table-persist-example[] DebitAccount debitAccount = new DebitAccount(); debitAccount.setId( 1L ); debitAccount.setOwner( "John Doe" ); debitAccount.setBalance( BigDecimal.valueOf( 100 ) ); debitAccount.setInterestRate( BigDecimal.valueOf( 1.5d ) ); debitAccount.setOverdraftFee( BigDecimal.valueOf( 25 ) ); CreditAccount creditAccount = new CreditAccount(); creditAccount.setId( 2L ); creditAccount.setOwner( "John Doe" ); creditAccount.setBalance( BigDecimal.valueOf( 1000 ) ); creditAccount.setInterestRate( BigDecimal.valueOf( 1.9d ) ); creditAccount.setCreditLimit( BigDecimal.valueOf( 5000 ) ); entityManager.persist( debitAccount ); entityManager.persist( creditAccount ); //end::entity-inheritance-single-table-persist-example[] } ); doInJPA( this::entityManagerFactory, entityManager -> { //tag::entity-inheritance-single-table-query-example[] List<Account> accounts = entityManager .createQuery( "select a from Account a" ) .getResultList(); //end::entity-inheritance-single-table-query-example[] } ); } //tag::entity-inheritance-single-table-example[] @Entity(name = "Account") @Inheritance(strategy = InheritanceType.SINGLE_TABLE) public static class Account { @Id private Long id; private String owner; private BigDecimal balance; private BigDecimal interestRate; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getOwner() { return owner; } public void setOwner(String owner) { this.owner = owner; } public BigDecimal getBalance() { return balance; } public void setBalance(BigDecimal balance) { this.balance = balance; } public BigDecimal getInterestRate() { return interestRate; } public void setInterestRate(BigDecimal interestRate) { this.interestRate = interestRate; } } @Entity(name = "DebitAccount") public static class DebitAccount extends Account { private BigDecimal overdraftFee; public BigDecimal getOverdraftFee() { return overdraftFee; } public void setOverdraftFee(BigDecimal overdraftFee) { this.overdraftFee = overdraftFee; } } @Entity(name = "CreditAccount") public static class CreditAccount extends Account { private BigDecimal creditLimit; public BigDecimal getCreditLimit() { return creditLimit; } public void setCreditLimit(BigDecimal creditLimit) { this.creditLimit = creditLimit; } } //end::entity-inheritance-single-table-example[] }