我正在使用JPA进行数据库。我定义了类,现在我正在插入数据。这是我的表格:
public class Cliente {
@Id
@Column(name = "DNI", nullable = false, length = 10)
private String DNI;
@Column(name= "Nombre", nullable = false, length= 20)
private String nombre;
@Column(name= "Apellidos", nullable = false,length= 50)
private String apellidos;
@Column(name= "FechaNac" , nullable = false)
private Date FechaNac; //uso Date de SQL ya que es para una base de datos.
@Column(name= "Direccion" , nullable = false, length = 40)
private String direccion;
@Column(name = "email" , nullable= true, length=50)
private String email;
@Column(name = "Telefono" , nullable=false,length=15)
private String telefono;
@ManyToMany(cascade ={CascadeType.ALL})
@JoinTable(name="es_titular",joinColumns=@JoinColumn(name="DNI"),inverseJoinColumns=@JoinColumn(name="numerocuenta"))
private Set<Cuenta> cuentas;
public Cliente(){}
public Set<Cuenta> getCuentas(){
return cuentas;
}
public void setCuentas(Set<Cuenta> a){
cuentas=a;
}
}
和另一张表:
package Entidades;
import java.sql.Date;
import java.util.Set;
import javax.persistence.*;
@Entity(name="Cuenta")
@Inheritance(strategy=InheritanceType.JOINED)
@DiscriminatorColumn(
name="discriminator",
discriminatorType=DiscriminatorType.STRING)
//Si es especializacion total, no se pone.
//@DiscriminatorValue("D")
public class Cuenta {
@Id
@Column(name="numerocuenta", nullable=false, length=15)
private String numerocuenta;
@Column(name="FechaCreacion", nullable=false)
private Date FechaCreacion;
@Column(name="Saldo", nullable=false, precision=2)
private float Saldo;
@ManyToMany(mappedBy ="cuentas")
private Set<Cliente> clientes;
@OneToMany(cascade=CascadeType.REMOVE, mappedBy="cuenta")
private Set<Operacion> operaciones;
@OneToMany(cascade=CascadeType.REMOVE, mappedBy="cuentaObjetivo")
private Set<Transferencia> transferencias;
public Set<Cliente> getClientes(){
return clientes;
}
public void setClientes(Set<Cliente> s){
clientes=s;
}
public Set<Operacion> getOperaciones(){
return operaciones;
}
public void setOperaciones(Set<Operacion> s){
operaciones=s;
}
public Set<Transferencia> getTransferencias(){
return transferencias;
}
public void setTransfrencias(Set<Transferencia> s){
transferencias=s;
}
}
我已经删除了一些属性以使代码更加干净。
然后,当我插入Cuentas时,我这样做:
Set<Cliente> clientes=new HashSet<Cliente>();
clientes.add(cliente1);
clientes.add(cliente2);
trans.begin();
Cuenta cuenta = new Cuenta();
cuenta.setNumerocuenta("343434");
cuenta.setFechaCreacion(new Date(2013,05,05));
cuenta.setSaldo(0);
cuenta.setClientes(clientes);
em.persist(cuenta);
trans.commit();
创建了Cliente和Cuenta。但是当我查看数据库时,我没有在任何表格中看到Set Clientes。
你知道我做错了吗?
编辑:我的目标是当我在连接表es_titular中的任何表格(Cliente或Cuenta)中插入一个Set时,出现。 es_titular的结构是:DNI varchar2(10 char),numerocuenta varchar2(15 char)
答案 0 :(得分:1)
您有双向关联。每个双向关联都有一个所有者方和一个反方。反面是具有mappedBy
属性的边。业主方是另一方。 JPA并不关心反面。
因此,如果您想将客户与cuenta关联,您必须将cuenta添加到客户,因为cuente是关联的所有者方。一般来说,良好的做法是维持协会的双方,即使JPA只关心业主方,因为