OneToOne Mapping未设置映射对象

时间:2015-12-20 14:11:40

标签: java hibernate hibernate-mapping cascade one-to-one

我有3个班级,即SatislarUrunlerMusteriler

在Satislar类中,有2个外键:urunidmusteriid

每个Satislar对象都有一个Urunler对象和一个Musteriler对象。

所以我需要在Satislar类中使用两个不同的OneToOne映射。首先是Urunler,第二个是Musteriler

当我向数据库添加新的Satislar对象时,我将使用现有的Musteriler对象和Urunler对象。代码不得创建新的MusterilerUrunler对象。 为了达到这个目的,我已经使用了

(insertable= false, updatable=false)

但我无法将UrunlerMusteriler个对象设置为Satislar个对象。它说:

  

列不允许空值。 INSERT失败。

我认为我的注释有问题。

这是我的代码块。

...
Session session = null;    
Urunler urun = gelenUrunler.get(tblUrunler.getSelectedRow());
Musteriler musteri = gelenMusteriler.get(cmbMusteriler.getSelectedIndex());
System.out.println(musteri.getId() + "asd " + urun.getId());
Satislar satis = new Satislar();
satis.setUrun(urun);
satis.setMusteri(musteri);
satis.setAdet(Integer.valueOf(txtAdet.getText().trim()));
satis.setTarih(new Date());

try {

    session = HibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();

    session.save(satis);    
    session.getTransaction().commit();  

} catch (Exception e) {
    System.out.println("Satış sırasında hata oluştu." + e);
} finally {
    session.close();        
}
...

Satislar class:

...
private static final long serialVersionUID = 1L;
@Id 
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Basic(optional = false)
@Column(name = "id")
private Integer id;
@Basic(optional = false)
@Column(name = "urunid", insertable = false, updatable = false)
private Integer urunid;
@Basic(optional = false)
@Column(name = "adet")
private Integer adet;
@Basic(optional = false)
@Column(name = "musteriid", insertable = false, updatable = false)
private Integer musteriid;
@Basic(optional = false)
@Column(name = "tarih")
@Temporal(TemporalType.TIMESTAMP)
private Date tarih;




@OneToOne(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
@JoinColumn(name = "urunid", insertable = false, updatable = false)
private Urunler urun;

public Urunler getUrun() {
    return urun;
}

public void setUrun(Urunler urun) {
    this.urun = urun;
}

@OneToOne(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
@JoinColumn(name = "musteriid", insertable = false, updatable = false)
private Musteriler musteri;

public Musteriler getMusteri() {
    return musteri;
}

public void setMusteri(Musteriler musteri) {
    this.musteri = musteri;
}
...

2 个答案:

答案 0 :(得分:1)

您已将所有内容都设为不可插入且不可更新。因此,Hibernate在插入Satislar时不会在列中插入任何内容。

删除urunidmusteriid字段:它们无用。您已经拥有OneToOne关联,这已足够。

然后从两个insertable注释中删除updatableJoinColumn属性。

此外,如果有几个Satislar指的是同一个Urunler或Musteriler,那么你实际拥有的是ManyToOne协会,而不是OneToOne。

最后,cascade = CascadeType.ALL非常可疑:如果Urunler可以在没有Satislar的情况下存在,那么在创建/删除Satislar时,您可能不想创建/删除Urunler。

答案 1 :(得分:1)

当您为关系指定@JoinColumn(name = "column_id")时,hibernate会将column_id计算为关系的foreignkey列。您只需将实体添加到一起并保存即可。

Satislar s = new Satislar();

Urunler u = new Urunler();

Musteriler m = new Musteriler();

s.setUrun(u);
s.setMusteri(m);

session.save(s);

您应该从urunid中删除musteriidSatislar字段,并根据需要为JoinColumn注释中的列指定列名。

@Entity
public class Satislar {
   ....

    @OneToOne(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
    @JoinColumn(name = "urun_id")
    private Urunler urun;

    @OneToOne(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
    @JoinColumn(name = "musteri_id")
    private Musteriler musteri;
    ....
}

希望这有帮助。