Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to do unidirectional one-to-many relationship on the same entity class?

@Entity
public class User extends Model {
    @Id
    private Long id;
    ....
    @OneToMany(cascade = CascadeType.PERSIST)
    @JoinTable(name="ignores",
               joinColumns = @JoinColumn(name = "user_id"),
               inverseJoinColumns = @JoinColumn(name="ignored_id"))
    public List<User> ignoreList;
    ....        
}

[PersistenceException: Error inserting bean [class models.User] with unidirectional relationship. For inserts you must use cascade save on the master bean [class models.User].]

share|improve this question

1 Answer

It basically says, that for INSERTS you must use CASCADE SAVE on MASTER BEAN.

You should persist parent User, which holds ignored users.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.