org.springframework.orm.jpa.JpaSystemException: Found shared references to a collection: lk.pwc.projects.rdd.rims.entitymanagement.domain.common.Land.deedList;
nested exception is org.hibernate.HibernateException: Found shared references to a collection: lk.pwc.projects.rdd.rims.entitymanagement.domain.common.Land.deedList
@ElementCollection(fetch = FetchType.LAZY)
@CollectionTable(name = "land_application_upload_deed", joinColumns = @JoinColumn(name = "land_application_id"))
private Set<LandDeed> deedList;
在“映射上方”引发错误
答案 0 :(得分:2)
每当您重新初始化collection属性时,都会发生此事情。在您的情况下,它是“ deedList”。无需重新初始化它,只需清除它并在其中添加新元素即可。