[Error] TransientPropertyValueException: object references an unsaved transient
coco3o
코드로 배우는 스프링부트 웹프로젝트를 공부 하던 중 연관관계 테스트 부분에서 테스트 데이터를 추가하고 있는데 아래와 같이 TransientPropertyValueException의 오류가 났다. org.hibernate.TransientPropertyValueException: object references an unsaved transient instance - save the transient instance before flushing : org.coco.board.entity.Board.writer -> org.coco.board.entity.Member 원인 구글링을 통해 알아보니 원인은 영속성 때문에 나는 오류라고 한다. FK로 쓰는 객체가 아직 저장이 안되서 나오는 오류이다. 객체간 @On..