使用 Spring boot CrudRepository 过滤数据

我有一个简单的REST服务,它使用Spring boot访问数据。CrudRepository

此存储库已经实现了分页和排序功能,如下所示:

public interface FlightRepository extends CrudRepository<Flight, Long> {
  List<Flight> findAll(Pageable pageable);
}

称呼它:

Sort sort = new Sort(direction, ordering);
PageRequest page = new PageRequest(xoffset, xbase, sort);

return flightRepo.findAll(page);

我还想向此存储库添加过滤(例如,仅返回具有 的实体)。CrudRepository似乎不支持此功能。有没有办法实现这一点,或者我是否需要使用不同的方法?id > 13 AND id < 27

感谢您的任何提示!


答案 1

另一种方法是通过条件 API 或使用 QueryDSL 使用规范模式,这可以解决您在上述注释中关于必须为每个参数组合创建查询方法的问题。

下面概述了这两种方法,以回应以下问题:

对于较大的应用程序,查询方法的数量可能会增加,因为查询定义了一组固定的条件,这是第二点。为了避免这两个缺点,如果您可以提出一组原子谓词,您可以动态组合以构建查询,那不是很酷吗?

https://spring.io/blog/2011/04/26/advanced-spring-data-jpa-specifications-and-querydsl/

我发现QueryDSL更容易使用。您只需要定义一个接口方法,然后可以将参数的任意组合作为谓词传递给该方法。

例如:

public interface UserRepository extends PagingAndSortingRepository<User, Long>, QueryDslPredicateExecutor<User> {
    public List<User> findAll(Predicate predicate);
}

并查询:

repository.findAll(QUser.user.address.town.eq("Glasgow").and(QUser.user.gender.eq(Gender.M)));

repository.findAll(QUser.user.address.town.eq("Edinburgh"));

repository.findAll(QUser.user.foreName.eq("Jim"));

其中 QUser 是 QueryDSL 自动生成的类。

http://docs.spring.io/spring-data/jpa/docs/current/api/index.html?org/springframework/data/jpa/repository/support/QueryDslRepositorySupport.html

http://www.querydsl.com/static/querydsl/2.1.0/reference/html/ch02s02.html

更新

从Spring Data模块的Gosling版本开始,现在支持在Web应用程序中从HTTP参数自动生成谓词。

https://spring.io/blog/2015/09/04/what-s-new-in-spring-data-release-gosling#querydsl-web-support


答案 2

在存储库中声明以下函数[EDITED]

Page<Flight> findByIdBetween(Long start, Long end, Pageable pageable)

然后,您可以从存储库的实例中调用此函数。有关详细信息,请参阅弹簧数据参考