[JPA/error] org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing:
Problem. JPA @ManyToMany Entity에 Save 처리 중 아래와 같은 오류 발생 org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing: Solution 맵핑 어노테이션에 cascade=CascadeType.ALL 추가 @ManyToMany(cascade=CascadeType.ALL) cascade 참고 CascadeType의 종류에는 다음과 같은 것들이 있다. CascadeType.RESIST – 엔티티를 생성하고, 연관 엔티티를 추가하였을 때 persist() 를 수행하면 연관 엔티티도 함께 pers..