Spring数据jpa按查询计数

时间:2017-07-20 18:39:46

标签: hibernate jpa spring-data-jpa

我的用户包含一系列课程,而U需要获得学生注册的课程数量。我不希望ti加载学生,因为这将加载整个学生图形对象与其他属性地址等等。有没有办法使用弹簧数据jpa来获得计数。

2 个答案:

答案 0 :(得分:4)

您可以在StudentRepository中添加如下方法(假设您的实体Student pk为id,并将属性名称设置为课程)

@Query("select size(s.courses) from Student s where s.id=:id")
long countCoursesByStudentId(@Param("id") long id);

或者你也可以在CourseRepository中添加一个count方法(假设有许多课程与学生的关系,pk和属性的名称为id和student)

long countByStudentId(long id);

答案 1 :(得分:1)

由于你有N到很多关系,你可以使用size()函数为用户提供课程。

public class UserIdCountCourses {
    private Long userId;
    private Integer countCourses;

    public UserIdCountCourses(Long userId, Integer countCources) {
        this.userId = userId;
        this.countCourses = countCources;
    }

    public Long getUserId() {
        return userId;
    }

    public Integer getCountCourses() {
        return countCourses;
    }
}

@Query("select new package.....UserIdCountCourses(u.id , size(u.cources)) 
                                           from User u group by u.id")
List<UserIdCountCourses> findUserIdAndCountEnrolledCourses ();

此外,您可以使用本机查询仅选择所需的内容。本机查询结果是对象数组,但您可以将@SqlResultSetMapping应用于命名本机查询,例如(将SqlResultSetMapping添加到实体或xml配置文件中):

@SqlResultSetMapping(
    name="UserIdCountCoursesMapping",
    classes={
        @ConstructorResult(
            targetClass=UserIdCountCourses.class,
            columns={
                @ColumnResult(name="user_id"),
                @ColumnResult(name="count_courses")
            }
        )
    }
)
--just query example
@NamedNativeQuery(name="getUserIdCountCourses", query="SELECT user_id,count (1) FROM user LEFT JOIN cources cu ON user_id=cu.user_id",resultSetMapping="UserIdCountCoursesMapping")