@JsonIgnore

yg kim·2022년 12월 13일
0

오류 해결

목록 보기
2/3

Spring JPA에서

양방향 다대일 관계 설정 후

서로에 대한 엔티티를 가져와 보여주려고 하기때문에 무한 루프를 발생시켜

Cannot call sendError() after the response has been committed

에러가 발생함.

이때 @ManyToOne에

@JsonIgnore 추가

    @ManyToOne(fetch = FetchType.EAGER, cascade = CascadeType.ALL)
    @JsonIgnore
    @JoinColumn(name = "interviews_id")
    private Interviews interviews_id;

해결됨.

출처

https://thalals.tistory.com/227

profile
발전하고 싶은 사람

0개의 댓글