JPA - 为什么我的一对多关系没有出现在数据库中

时间:2014-11-18 17:37:23

标签: java mysql jpa orm

我正在学习JPA,我有2个实体(Customer和CheckingAccount),其中第一个实体与第二个实体有一对多的关系。 CheckingAccount是BankAccount类的子类。我正在使用MySQL。

我在测试程序中创建了2个支票帐户,并将它们分配给我创建的一个客户。

在我坚持所有内容并检查我的数据库后,我希望在CheckingAccount表中看到2行,在Customer表中显示2行,表示此客户有2个支票帐户,但我只看到一行和帐户的值列是" blob" 我希望看到一个帐号。

我不能在我的客户表中看到2行表明客户有2个支票账户?

这是我的客户实体......

package com.gmail.gmjord;

import java.io.Serializable;
import java.lang.String;
import java.util.ArrayList;
import java.util.List;

import javax.persistence.*;

/**
 * Entity implementation class for Entity: Customer
 * 
 */
@Entity
public class Customer implements Serializable {

    @Id
    @GeneratedValue
    private String id;
    @Column(nullable = false)
    private String name;
    @Column(nullable = false)
    private List<BankAccount> accounts;
    @Column(nullable = false)
    private String infoId;
    @Column(nullable = false)
    private String pin;
    private static final long serialVersionUID = 1L;

    public Customer() {
        super();
        accounts = new ArrayList<BankAccount>();
    }

    public String getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAccountsLength() {
        return this.accounts.size();
    }

    public boolean isAccountsNull() {
        if (accounts == null) {
            return true;
        } else {
            return false;
        }
    }

    public List<BankAccount> getAccounts() {
        return accounts;
    }

    public void setAccounts(List<BankAccount> accounts) {
        this.accounts = accounts;
    }

    public String getInfoId() {
        return this.infoId;
    }

    public void setInfoId(String infoId) {
        this.infoId = infoId;
    }

    public String getPin() {
        return this.pin;
    }

    public void setPin(String pin) {
        this.pin = pin;
    }

}

这是我的CheckingAccount实体......

package com.gmail.gmjord;

import com.gmail.gmjord.BankAccount;
import java.io.Serializable;
import javax.persistence.*;

/**
 * Entity implementation class for Entity: CheckingAccount
 *
 */
@Entity

public class CheckingAccount extends BankAccount implements Serializable {


    private static final long serialVersionUID = 1L;

    public CheckingAccount() {
        super();
    }

}

这是我的BankAccount超级类CheckingAccount ...

package com.gmail.gmjord;

import java.io.Serializable;
import java.lang.String;
import javax.persistence.*;

/**
 * Entity implementation class for Entity: BankAccount
 *
 */
@MappedSuperclass

public abstract class BankAccount implements Serializable {


    @Id
    @Column(nullable=false)
    private String accountNum;
    @Column(nullable=false)
    private String balance;
    @Column(nullable=false)
    private String accountType;
    private static final long serialVersionUID = 1L;

    public BankAccount() {
        super();
    }   
    public String getAccountNum() {
        return this.accountNum;
    }

    public void setAccountNum(String accountNum) {
        this.accountNum = accountNum;
    }   
    public String getBalance() {
        return this.balance;
    }

    public void setBalance(String balance) {
        this.balance = balance;
    }   
    public String getAccountType() {
        return this.accountType;
    }

    public void setAccountType(String accountType) {
        this.accountType = accountType;
    }

}

1 个答案:

答案 0 :(得分:0)

当你使用&#34;一对多&#34;有2个支票账户和一个客户,你在数据库中有以下结构(只是一个任意的例子 - 我使用json格式只是为了更好地解释,但想象它的属性为列):

客户= [{id:1,姓名:安德森先生}]

CheckingAccount = [{id:1,value:$ 100,id_customer:1},{id:2,value:$ 250,id_customer:1}]

您不需要在customer表中有两行。如果您具有一对多关系,则在多关系表中具有外键。

知道了......它有意义吗?