Is it possible to add fixed values directly in a CrudRepository
query method? Like:
findAdults(int age > 17);
findAllByBookingDateAndStatus(LocalDate bookingDate = LocalDate.now().minusDays(1), TypeStatus status = TypeStatus.FAILED);
Is it possible to add fixed values directly in a CrudRepository
query method? Like:
findAdults(int age > 17);
findAllByBookingDateAndStatus(LocalDate bookingDate = LocalDate.now().minusDays(1), TypeStatus status = TypeStatus.FAILED);
For the first one simply use:
findByAgeGreaterThan(Integer age);
For the second one, just provide the values to match like so:
findAllByBookingDateAndStatus(LocalDate bookingDate, TypeStatus status);
Spring undestand what you want using the used words "LessThan", "And", "Between" and the like in the name of the queries
As an alternative to custom
@Query
'es, you may use default methods.This is especially useful if default values are calculated in a "complex" way, e.g.
LocalDate.now().minusDays(1)
.For example: