SPRING FIND BY DATA GREAT code example
Example 1: findbyname in jpa
List<User> findByNameOrBirthDate(String name, ZonedDateTime birthDate);List<User> findByNameOrBirthDateAndActive(String name, ZonedDateTime birthDate, Boolean active);
Example 2: findbyname in jpa
List<User> findByBirthDateAfter(ZonedDateTime birthDate);List<User> findByBirthDateBefore(ZonedDateTime birthDate);