我正在尝试按标签列表过滤文档,这些标签都存储在具有ManyToMany-Relationship的数据库中。
模型看起来像:
public Document extends Model {
....
@ManyToMany
public List<Tag> tagList;
public static findDocumentsByTags(List<Tag> tags)
{
// Here i need help.....
}
}
如何从db中获取文档列表? saveManyToManyAssociations正确保存所需数据,db看起来很好。只需要ebean的功能
感谢您的支持
答案 0 :(得分:0)
我说你需要实体注释,如果需要,还需要表名:
@Entity
@Table(name="table_name_of_documents")
public Document extends Model {