spring data jpa where静态类

import static org.springframework.data.mongodb.core.query.Criteria.where;
import static org.springframework.data.mongodb.core.query.Query.query;

这是mongodb的包,
但是我没知道 spring data jpa 的 where等。 但是官方这样的 :

List<Customer> customers = customerRepository.findAll(
  where(isLongTermCustomer())

这个where包位置在哪里 ?

阅读 3.1k
1 个回答

spring data 还有个给mongodb的项目。 maven加上spring-boot-starter-data-mongodb试试

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题