1

私はこのような私のコードで親と子の間に関係(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);

子供がテーブルから削除されていません。何が問題なのですか。英語が下手で申し訳ありません:-(

4

2 に答える 2

3

childこの場合、データベースから削除しないでください。それが必要な動作である場合は、「孤立した削除」を有効にする必要があります。

@OneToMany(mappedBy = "parent", cascade = CascadeType.ALL, orphanRemoval=true)
@LazyCollection (LazyCollectionOption.FALSE)
public List<Child> getChilds() {
    return childs;
}
于 2012-10-05T13:55:42.750 に答える
0

役に立つかもしれません

Child c = (Child) parent.getChilds();
parent.getChilds().remove(c);
c.setParent(null);

また

Child c = (Child) parent.getChilds();
parent.getChilds().remove(c);
session.delete(c);
于 2013-03-22T10:11:42.400 に答える