当我向项目添加关联时,我发现文件未找到异常。 如果我评论这些行,应用程序工作正常。
Klient.java
Set<Przewoz> przewozy = new HashSet<Przewoz>();
@OneToMany
public void setPrzewozy(Set przewozy) {
this.przewozy = przewozy;
}
@OneToMany
public Set<Przewoz> getPrzewozy() {
return przewozy;
}
@OneToMany
public void dodajPrzewoz(Przewoz przewoz) {
przewoz.setKlient(this);
przewozy.add(przewoz);
}
Przewoz.java
@ManyToOne
public Klient getAklient(){
return aklient;
}
@ManyToOne
public void setKlient(Klient aklient) {
this.aklient = aklient;
}