JPA ManyToMany problem
Hello i have an Entity Exam
@Id
@Gen开发者_如何转开发eratedValue(strategy=GenerationType.TABLE)
private Long id;
.....
......
@ManyToMany
private List<Exam> exams;
@ManyToMany(mappedBy="id")
private List<Exam> parentExams;
The problem is that
@ManyToMany
private List<Exam> exams;
is ok works great...
but this doesnt validate?!
@ManyToMany(mappedBy="id")
private List<Exam> parentExams;
Any idea what to do ? I just want to get the exams that are parents of the current exam.
Διεθνές Νομισματικό Ταμείο
SOLVED.
mappedBy="id" should be mappedBy="exams"
精彩评论