Spring Data查询创建是否在查询创建中支持IsTrue / False?
我在旧版本的文档中找到了此部分http://docs.spring.io/spring-data/jpa/docs/1.0.0.M1/reference/html/#jpa.query-methods.query-creation,但我找不到与最新版本相似的内容。
答案 0 :(得分:3)
是的,只需使用IsTrue
或IsFalse
您的存储库方法:
interface PersonRepository extends Repository<Person, Long> {
Iterable<Person> findByActiveIsTrue();
}
中