1

我正在尝试通过标记列表过滤文档,这些标记都存储在具有多对多关系的数据库中。

模型看起来像:

public Document extends Model {
     ....
     @ManyToMany
     public List<Tag> tagList;

     public static findDocumentsByTags(List<Tag> tags)
     {
     // Here i need help.....
     }
}

我如何从数据库中获取文档列表?saveManyToManyAssociations 正确保存了所需的数据,并且数据库看起来很好。只需要ebean的功能

感谢您的支持

4

1 回答 1

0

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

@Entity
@Table(name="table_name_of_documents")
public Document extends Model {
于 2013-05-30T07:18:05.227 回答