使用 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
感谢您的任何提示!