Is it possible to query by Boolean properties in Spring Data JPA without using method parameters?
Basically I would like this to work without using custom @Query annotation:
@Query("SELECT c FROM Entity c WHERE c.enabled = true")
public Iterable<Entity> findAllEnabled();