私はこのような私のコードで親と子の間に関係(1対多/多対1)を持っています
親
@JsonAutoDetect
@Entity
@Table(name = "Parent")
public class Parent{
private Integer id;
private List<Child> childs;
@Id
@GeneratedValue(strategy= GenerationType.AUTO)
@Column (name="idparent")
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@OneToMany(mappedBy = "parent", cascade = CascadeType.ALL)
@LazyCollection (LazyCollectionOption.FALSE)
public List<Child> getChilds() {
return childs;
}
public void setChilds(List<Child> childs) {
for (Child child: childs) {
child.setParent(this);
}
this.childs= childs;
}
}
と子供
@JsonAutoDetect
@Entity
@Table(name="Child")
public class Child{
private Integer id;
private Parent parent;
@Id
@GeneratedValue(strategy= GenerationType.AUTO)
@Column (name = "idchild")
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@ManyToOne(fetch = FetchType.EAGER)
@NotFound(action = NotFoundAction.IGNORE)
@JoinColumn(name = "idparent")
@JsonIgnore
public Parent getParent() {
return parent;
}
public void setParent(Parent parent) {
this.parent= parent;
}
}
すべては大丈夫ですが、私がそう思うとき
parent.getChilds().remove(child);
session.update(parent);
子供がテーブルから削除されていません。何が問題なのですか。英語が下手で申し訳ありません:-(