추가 메소드로 Spring Data JPA 사용자 정의
Spring Data JPA에서는 저장소 인터페이스를 통해 기본 CRUD 및 Finder 기능에 쉽게 액세스할 수 있습니다. 파인더의 사용자 정의도 간단합니다. 그러나 구현과 함께 완전한 사용자 정의 메소드를 추가하는 경우 인터페이스 접근 방식이 제한됩니다.
이를 극복하려면 사용자 정의 메소드를 수용할 별도의 인터페이스를 생성할 수 있습니다.
public interface AccountRepository extends JpaRepository<Account, Long>, AccountRepositoryCustom { ... } public interface AccountRepositoryCustom { public void customMethod(); }
다음으로 사용자 정의 메서드 인터페이스에 대한 구현 클래스를 제공합니다.
public class AccountRepositoryImpl implements AccountRepositoryCustom { @Autowired @Lazy AccountRepository accountRepository; /* Optional - if you need it */ public void customMethod() { ... } }
이 접근 방식을 사용하면 유지 관리를 유지하면서 사용자 정의 메서드로 Spring Data JPA 저장소의 기능을 확장할 수 있습니다. 우려사항 분리
추가 리소스:
위 내용은 사용자 정의 메서드를 사용하여 Spring Data JPA 리포지토리를 어떻게 확장할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!