我正在尝试使用Spring MVC在两个人之间添加友谊关系。
第一个调用进展顺利,但第二个调用抛出唯一索引或主键冲突?为什么我会收到它?

@Entity
@Table(name="PERSON")
public class Person {

    @Id
    @GeneratedValue(strategy= GenerationType.IDENTITY)
    private Long id;

    @ManyToMany(fetch = FetchType.EAGER)
    @ElementCollection
    private List<Person> friends;

    @ManyToMany(mappedBy="friends", fetch = FetchType.EAGER)
    @ElementCollection
    private List<Person> friendOf;


    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public List<Person> getFriends() {
        return friends;
    }

    public void setFriends(List<Person> friends) {
        this.friends = friends;
    }

    public List<Person> getFriendOf() {
        return friendOf;
    }

    public void setFriendOf(List<Person> friendOf) {
        this.friendOf = friendOf;
    }

    public void addFriend(Person person){
        if(this.getFriends() == null){
            this.friends = new ArrayList<>();
        }

        this.friends.add(person);
    }




  public void setFriendship(Long firstPersonId, Long scndPersonId){
        Person firstPerson = personService.getPerson(firstPersonId);
       firstPerson.addFriend(personService.getPerson(scndPersonId));
        personService.savePerson(firstPerson);

        Person scndPerson = personService.getPerson(scndPersonId);
        scndPerson.addFriend(personService.getPerson(firstPersonId));
        personService.savePerson(scndPerson);
    }

Person pup1 = new Person();
Long pupId1 = controller.savePerson(pup1);
Person pup2 = new Person();
long pupId2 = controller.savePerson(pup2);
setFriendship(pupId1, pupId2);
Person pup3 = new Person();
long pupId3 = controller.savePerson(pup3)
controller.setFriendship(pupId3, pupId1); //This throws an exception
controller.setFriendship(pupId3, pupId2);


为什么标记的行导致异常? p1和p2之间的对setFrienship的第一次调用成功,但是当我尝试在p1和p3之间建立连接时,它失败,但出现以下异常:

org.h2.jdbc.JdbcSQLIntegrityConstraintViolationException: Unique index or primary key violation: "PUBLIC.UK_6VEJRSUXRONFC95I7O5XJNRMU_INDEX_D ON PUBLIC.PERSON_FRIENDS(FRIENDS_ID) VALUES 2

最佳答案

请看一下这个答案,希望您能正确解决。您需要做的就是指定连接列

Hibernate recursive many-to-many association with the same entity

您还可能尝试对同一实体两次持久化(在pub1中)。尝试使用合并!

您的setFriendship方法调用您的服务以保存您已经完成一次的实体,这是因为该实体已经存在,它给您提供了唯一的键冲突。

如果您需要更多说明,请发表评论!

09-10 22:35