public class Student { @ManyToMany(cascade=CascadeType.PERSIST,fetch=FetchType.LAZY) private Set<Course> courses = new HashSet<>(); //其他代码略 ...
確定! 回上一頁