spring data jpa composite key duplicate key record insertion resulting in update
问题 I have one entity having composite key and I am trying to persist it by using spring data jpa repository to mysql databse as given below: @Embeddable public class MobileVerificationKey implements Serializable{ private static final long serialVersionUID = 1L; @Column(name="CUSTOMERID") private Long customerId; @Column(name="CUSTOMERTYPE") private Integer customerType; @Column(name="MOBILE") private Long mobile; @Embeddable public class MobileVerificationKey implements Serializable{ private