Spring Data查询创建中的IsTrue / False

时间:2013-11-21 17:03:54

标签: java spring spring-data

Spring Data查询创建是否在查询创建中支持IsTrue / False?

我在旧版本的文档中找到了此部分http://docs.spring.io/spring-data/jpa/docs/1.0.0.M1/reference/html/#jpa.query-methods.query-creation,但我找不到与最新版本相似的内容。

1 个答案:

答案 0 :(得分:3)

是的,只需使用IsTrueIsFalse您的存储库方法:

interface PersonRepository extends Repository<Person, Long> {

  Iterable<Person> findByActiveIsTrue();
}

这也列在keywords section of the reference documentation