spring boot data find code example
Example 1: findbyname in jpa
List<User> findByNameContaining(String infix);
Example 2: findbyname in jpa
List<User> findByBirthDateAfter(ZonedDateTime birthDate);List<User> findByBirthDateBefore(ZonedDateTime birthDate);