使用其他方法自訂Spring Data JPA
在Spring Data JPA 中,您可以透過儲存庫介面輕鬆存取預設的CRUD 和介面查找器功能。查找器的客製化也很簡單。但是,當需要添加完整的自訂方法及其實作時,介面方法就會受到限制。
要克服這個問題,您可以建立一個單獨的介面來容納自訂方法:
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中文網其他相關文章!