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