返回在JAX-RS资源中进行分页时找到的总行数

时间:2013-03-14 13:17:12

标签: count jax-rs response paging

我正在创建一个Jax-RS资源。我想返回响应中的记录总数。我正在使用命名查询和标题函数来添加特定的“Count”变量,如下所示:

@GET
@Produces(MediaType.APPLICATION_JSON)
public Response findAll(
        @QueryParam("offset") int offset,
        @QueryParam("limit") int limit) {

    EntityManager em = factory.createEntityManager();
    Query query;
    try {

        query = em.createNamedQuery("User.getCount");
        String count = ((Long) query.getSingleResult()).toString();

        query = em.createNamedQuery("User.findAll");

        List<T> list = query.setFirstResult(safeOffset(offset))
                            .setMaxResults(safeLimit(limit))
                            .getResultList();

        return Response.ok(new GenericEntity<List<User>>(list) {})
                       .header("Count", count)
                       .build();

    } catch (Exception e) {
        return Response.serverError().build();
    } finally {
        em.close();
    }
}

我想知道是否有更好的方法来计算并返回找到的记录总数?

1 个答案:

答案 0 :(得分:1)