Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- initializr
- restful login 메소드
- sendError()
- jpa
- Gradle - Groovy
- 파이썬
- ERD 수정
- intellij 속도 향상
- Gradle - Kotlin
- 알고리즘
- 아규먼트 리졸버
- 쿼리에러
- springboot
- jpa 연관관계
- 데이터베이스
- auto ddl
- logout http 메소드
- springboot mysql
- restful 카멜케이스
- 할일관리
- create 모드
- 테이블구성
- 테이블항목
- restful api 작성 방법
- Intellij terminal jar
- restful api 명세서
- SpringBoot개인프로젝트
- 어노테이션
- 연관관계
- 터미널 실행
Archives
- Today
- Total
리나 Dev토리
[트슈] IllegalStateException: Cannot call sendError() after the response has been committed 본문
SpringBoot 개인플젝(TodayMaker)
[트슈] IllegalStateException: Cannot call sendError() after the response has been committed
리나lina 2023. 4. 6. 19:52에러
할일들 목록에서
몇개를 선택하고 오늘날짜로 추가하고 나서
오늘 날짜 밑에
할일 목록을 뿌려주는 데서
IllegalStateException: Cannot call sendError() after the response has been committed
StackOverflowError: null
위 에러가 나왔다.
원인
할일들 객체를 json으로 바꾸는 과정에서
연관관계 있는 todo와 user가
계속 서로를 참조하면서 재귀함수가 계속적으로 발생하여
stack 공간이 부족해져서 나온 에러이다.
해결 방법
@ManyToOne 연관관계가 매핑 되는 필드인
User 와 Category 에
@JsonIgnore를 붙여주면 순환 참조가 끊어지게 된다.
참고: https://zoetechlog.tistory.com/97
'SpringBoot 개인플젝(TodayMaker)' 카테고리의 다른 글
로직 구현 후 로그인 구현시 트러블슈팅 (2) | 2023.04.17 |
---|---|
갑자기 MySQL 연결이 안될때 Failed to load driver class com.mysql.cj.jdbc.Driver in either of HikariConfig class loader or Thread context classloader (0) | 2023.04.07 |
@ManyToOne 같은 연관관계 어노테이션 안쓰고 저장해도 되는지? (0) | 2023.04.06 |
Restful API 설계하기 (1) | 2022.12.21 |
DDL create모드로 DB 스키마 적용 (0) | 2022.12.20 |
Comments