leandromoraesrj / sincad-backend

PROJETO BASE DE EXEMPLO USANDO AS MELHORES PRATICAS DE DESENVOLVIMENTO
0 stars 0 forks source link

Mapeamento Hibernate JPA - Interface Repository #31

Open leandromoraesrj opened 2 years ago

leandromoraesrj commented 2 years ago

@Repository

@Repository
public interface DacRepository extends JpaRepository<Dac, Integer> {
}

extends JpaRepository, de forma automática, instanciará um EntityManager e disponibilizará vários métodos, como: "findById", "save" etc.

JpaRepository retorna List PagingAndSorting e CrudRepository retornam java.lang.Itarable JpaRepository estende PagingAndSorting, que a interface para paginação. CrudRepository não estende PagingAndSorting