通过ManyToMany-Relationship获取对象

时间:2012-06-24 14:06:10

标签: playframework-2.0 ebean

我正在尝试按标签列表过滤文档,这些标签都存储在具有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的功能

感谢您的支持

1 个答案:

答案 0 :(得分:0)

我说你需要实体注释,如果需要,还需要表名:

@Entity
@Table(name="table_name_of_documents")
public Document extends Model {