JPA Repos - Shehats/Quip GitHub Wiki
Because we are using JPA:
We are using JPA repository: Spring by default has implemented repositories (Crud and jpa) in our porject we will use JPA because it has more flexibility to it. @Repository
public interface AccountRepository extends JpaRepository<Account, Long> { }
We are also using stereotypes to mark our repositories.
@Repository