Skip to content

Instantly share code, notes, and snippets.

@cbeams
Created July 2, 2013 13:54
Show Gist options
  • Select an option

  • Save cbeams/5909489 to your computer and use it in GitHub Desktop.

Select an option

Save cbeams/5909489 to your computer and use it in GitHub Desktop.
interface PersonRepository extends Repository<Person, Long> {
@Query("select p from Person p where p.lastname like %?1")
List<Person> findByLastname(String lastname);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment