Skip to content

Instantly share code, notes, and snippets.

@gregori
Created October 25, 2015 20:26
Show Gist options
  • Save gregori/61d09ff79d926898a25a to your computer and use it in GitHub Desktop.
Save gregori/61d09ff79d926898a25a to your computer and use it in GitHub Desktop.
Passo 2b
public interface PessoaRepository extends JpaRepository<Pessoa, Long> {
List<Pessoa> findByNomeLike(@Param("nome") String nome);
}
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment