Skip to content

Commit 78f0d57

Browse files
authored
Create CustomerRepository.java
1 parent 9219a49 commit 78f0d57

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package net.springboot.javaguides.repository;
2+
3+
import org.springframework.data.jpa.repository.JpaRepository;
4+
5+
import net.springboot.javaguides.entity.Customer;
6+
7+
public interface CustomerRepository extends JpaRepository<Customer, Long>{
8+
// spring data jpa provides full crud operations for Customer entity
9+
}

0 commit comments

Comments
 (0)