관리 메뉴

제뉴어리의 모든것

object references an unsaved transient instance - save the transient instance before flushing 에러 본문

Spring Boot

object references an unsaved transient instance - save the transient instance before flushing 에러

제뉴어리맨 2022. 9. 3. 15:01
object references an unsaved transient instance - save the transient instance before flushing

 

무엇인가?

 

개체가 저장되지 않은 일시적인 인스턴스를 참조합니다. 플러싱하기 전에 임시 인스턴스를 저장합니다.

 

왜 뜨는 것 일까?

 

@OneToMany 또는 @ManyToOne 을 사용할 때 Parent에 추가하는 Child 개체가 아직 데이터베이스에 저장되지 않아서 생긴 문제입니다.

 

cascade = CascadeType.ALL 을 포함해야 에러 메시지가 출력되지 않습니다.

출처: https://duzi077.tistory.com/143 [개발하는 두더지:티스토리]