Spring Data JPA에 사용자 지정 메서드를 추가하는 방법 Spring Data JPA에 대해 알아보고 있습니다.아래 예에서는 모든 crud 및 finder 기능을 기본적으로 사용할 수 있으며, Finder를 커스터마이즈하려면 인터페이스 자체에서도 쉽게 실행할 수 있습니다. @Transactional(readOnly = true) public interface AccountRepository extends JpaRepository { @Query("") List findByCustomer(Customer customer); } 위의 Account Repository 구현에 완전한 커스텀 메서드를 추가하는 방법을 알고 싶습니다.인터페이스이기 때문에, 거기에 메서드를 실장할 수 없습니다.커스텀 메서드..