根據官方的文檔說明:Spring Data JPA - Reference Documentation
可以在查詢的參數后面添加 True 或 False 來進行查詢。
例如,如果需要對下面的參數進行查詢:
True findByActiveTrue() … where x.active = true
False findByActiveFalse() … where x.active = false
那么我們在查詢的接口上可以使用:
@Query
public Iterable<Entity> findByEnabledTrue();