我有3个班级,即Satislar
,Urunler
和Musteriler
在Satislar类中,有2个外键:urunid
和musteriid
每个Satislar
对象都有一个Urunler
对象和一个Musteriler
对象。
所以我需要在Satislar
类中使用两个不同的OneToOne映射。首先是Urunler
,第二个是Musteriler
。
当我向数据库添加新的Satislar对象时,我将使用现有的Musteriler
对象和Urunler
对象。代码不得创建新的Musteriler
,Urunler
对象。
为了达到这个目的,我已经使用了
(insertable= false, updatable=false)
但我无法将Urunler
和Musteriler
个对象设置为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;
}
...
答案 0 :(得分:1)
您已将所有内容都设为不可插入且不可更新。因此,Hibernate在插入Satislar时不会在列中插入任何内容。
删除urunid
和musteriid
字段:它们无用。您已经拥有OneToOne关联,这已足够。
然后从两个insertable
注释中删除updatable
和JoinColumn
属性。
此外,如果有几个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
中删除musteriid
和Satislar
字段,并根据需要为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;
....
}
希望这有帮助。