Exception
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
Snippet Causing the issue
    @ElementCollection(fetch = FetchType.LAZY)
    @CollectionTable(name = "land_application_upload_deed", joinColumns = @JoinColumn(name = "land_application_id"))
    private Set<LandDeed> deedList;
Above Mapping throwing the error
 
     
    