Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save artem-sh/4153205 to your computer and use it in GitHub Desktop.
Save artem-sh/4153205 to your computer and use it in GitHub Desktop.
Spring Data repository class managing Users
public interface UserRepository extends CrudRepository<User, Integer> {
List<User> findByLastnameIgnoreCase(String lastname);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment