JPA 和 Hibernate:计算投影中相关条目的数量

JPA and Hibernate: Count number of related entries in projection

我有一个简单的一对多关系。一个Post可以有很多Comments。我的目标是通过 ID 和相关评论的数量(计数)获取 post。

我使用的是 Kotlin,所以所有代码只是一个简化的演示

@Entity(name = "Post")
@Table(name = "post")
public class Post {
 
    @Id
    @GeneratedValue
    private Long id;
 
    private String title;

    private String text;
 
    @OneToMany(
        cascade = CascadeType.ALL,
        orphanRemoval = true
    )
    private List<Comment> comments = new ArrayList<>();
 
    //Constructors, getters and setters removed for brevity
}
 
@Entity(name = "Comment")
@Table(name = "comment")
public class Comment {
 
    @Id
    @GeneratedValue
    private Long id;
 
    private String review;
 
    //Constructors, getters and setters removed for brevity
}

现在我需要获取包含评论数的 Post。我想到了使用 dto 投影。

public class PostWithCount {
    private Long id;
    private String title;
    private String text;
    private Long numberOfComments;
}

我构造了如下jpql Query,但是不知道怎么统计评论数

@Query("select new my.package.PostWithCount(post.id, post.title, post.text, ???) from Post post left join post.comments comment where post.id = :id")

在不获取所有评论并计入 java 代码的情况下计算评论数量的最佳方法是什么?除了 DTO Projection,我也对其他解决方案持开放态度。

使用聚合...

select new my.package.PostWithCount(post.id, post.title, post.text, count(1))
from Post post 
    left join post.comments comment 
where post.id = :id 
group by post.id, post.title, post.text