Skip to content

Instantly share code, notes, and snippets.

@sohangp
Last active May 16, 2019 00:58
Show Gist options
  • Save sohangp/e233de9545823769fe45f7e1310d0df0 to your computer and use it in GitHub Desktop.
Save sohangp/e233de9545823769fe45f7e1310d0df0 to your computer and use it in GitHub Desktop.
JPA Repository
@Repository
public interface CustomerRepository extends JpaRepository<CustomerEntity, Integer> {
@Query(name = "customerEntity.getCustomerDetails", nativeQuery = true)
List<CustomerDetailsDTO> getCustomerDetails();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment