PlayFrameworkを使用して、モデルに関連付けられているManyToManyアイテムがないすべてのアイテムを一覧表示しようとしていますが、どうすればよいですか?
これが私の構造です:
User
@ManyToMany
List<Section> sections;
public static Model.Finder<Long,User> find = new Model.Finder<Long, User>(Long.class, User.class);
Section
Integer year;
@ManyToMany
List<User> users;
public static Model.Finder<Long,Section> find = new Model.Finder<Long, Section>(Long.class, Section.class);