스프링 부트 페일 세이프 청소(집합)가 발생하는 이유 아래 예외와 관련된 다음 엔티티가 있는 Java Spring Boot 애플리케이션이 있습니다. SP제품 @Entity @Table( name = "product", indexes = @Index( name = "idx_asin", columnList = "asin", unique = true ) ) public class SProduct implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) private long id; @Column(name = "asin", unique = false, nullable = false, length = 10) private Strin..