1 2 3 4 5 6 7
package com.example.spring.bank.customer; import org.springframework.data.repository.ListCrudRepository; public interface CustomerRepository extends ListCrudRepository<Customer, Long> { }