JPA:查找具有一组通用标签的所有文章

时间:2014-02-08 10:15:10

标签: java jpa persistence criteriaquery

我有以下实体:

@Entity
public class Article{
    @Id
    private String id;

    @ManyToMany(cascade = CascadeType.PERSIST)
    private Set<Tag> tags;

//non-relevant code
}

@Entity 
public class Tag{
    @Id
    private String id;

    @Basic
    @Column(nullable = false, unique = true, length = 32)
    private String name;

//non-relevant code
}

如何有效地查找具有共同Article个代码的所有set个实体?

天真的方法是查找属于每个tag的所有文章,然后返回所有文章集的intersection。类似的东西:

public Set<Article> findByTags(Set<Tag> tags){
    Set<Article> result = new HashSet<>();

    if(tags.isEmpty()){
        return result;
    }

    Iterator<Tag> i = tags.iterator();
    result.addAll(i.next().getArticles());

    while(i.hasNext() && !result.isEmpty()){
        result.retainAll(i.next());
    }

    return result;
}

我的问题是“ 是否有更有效的方法来执行此操作,这不需要从数据库中获取所有文章,例如这个? 也许通过一个JPQL查询或使用CriteriaBuilder(我之前从未使用过它)“

1 个答案:

答案 0 :(得分:6)

select a from Article a where :numberOfTags = 
    (select count(distinct tag.id) from Article a2
     inner join a2.tags tag
     where tag in :tags
     and a = a2)

这基本上计算了在接受的标签集中作为标签的文章的标签,并且如果这些标签的数量等于所接受的标签集的大小(意味着集合中的所有标签都是标签的标签)文章),返回文章。