在 spring-data-jpa 中按布尔属性查询,而不使用方法参数

2022-08-31 13:44:10

是否可以在不使用方法参数的情况下在Spring Data JPA中按布尔属性进行查询?

基本上,我希望这在不使用自定义@Query注释的情况下工作:

@Query("SELECT c FROM Entity c WHERE c.enabled = true")
public Iterable<Entity> findAllEnabled();

答案 1

JPA 存储库部分查询创建具有以下方法。

True    findByActiveTrue()  … where x.active = true
False   findByActiveFalse() … where x.active = false

我的猜测是使用

@Query
public Iterable<Entity> findByEnabledTrue();

答案 2

甚至可以跳过注释。所以它应该像这样工作:@Query

public Iterable<Entity> findByEnabledTrue();

推荐