自定義 Repository 實現

Spring Data 提供了各種選項來建立幾乎無需編碼的查詢方法。但是,當這些選項不能滿足您的需求時,您也可以為 repository 方法提供自己的自定義實現。本節描述瞭如何實現這一點。

定製單個 Repositories

要透過自定義功能豐富 repository,您必須首先定義一個片段介面和自定義功能的實現,如下所示:

用於自定義 repository 功能的介面
interface CustomizedUserRepository {
  void someCustomMethod(User user);
}
自定義 repository 功能的實現
class CustomizedUserRepositoryImpl implements CustomizedUserRepository {

  @Override
  public void someCustomMethod(User user) {
    // Your custom implementation
  }
}

對應於片段介面的類名中最重要的部分是 Impl 字尾。您可以透過設定 @Enable<StoreModule>Repositories(repositoryImplementationPostfix = …) 來定製儲存特定的字尾。

從歷史上看,Spring Data 自定義 repository 實現的發現遵循一種命名模式,該模式從 repository 派生自定義實現類名,從而有效地只允許一個自定義實現。

與 repository 介面位於同一包中,匹配 *repository 介面名稱* 後跟 *實現字尾* 的型別被視為自定義實現,並將被視為自定義實現。遵循該名稱的類可能導致不期望的行為。

我們認為單一自定義實現命名已棄用,建議不要使用此模式。相反,遷移到基於片段的程式設計模型。

實現本身不依賴於 Spring Data,可以是普通的 Spring Bean。因此,您可以使用標準的依賴注入行為來注入對其他 Bean(例如 JdbcTemplate)的引用,參與切面等等。

然後,您可以讓您的 repository 介面擴充套件該片段介面,如下所示:

您的 repository 介面的更改
interface UserRepository extends CrudRepository<User, Long>, CustomizedUserRepository {

  // Declare query methods here
}

透過您的 repository 介面擴充套件片段介面將 CRUD 和自定義功能結合起來,並使其可供客戶端使用。

Spring Data repositories 透過使用構成 repository 組合的片段來實現。片段是基礎 repository、功能切面(例如Querydsl)以及自定義介面及其實現。每次向 repository 介面新增介面時,都會透過新增一個片段來增強組合。基礎 repository 和 repository 切面實現由每個 Spring Data 模組提供。

以下示例顯示了自定義介面及其實現:

片段及其實現
interface HumanRepository {
  void someHumanMethod(User user);
}

class HumanRepositoryImpl implements HumanRepository {

  @Override
  public void someHumanMethod(User user) {
    // Your custom implementation
  }
}

interface ContactRepository {

  void someContactMethod(User user);

  User anotherContactMethod(User user);
}

class ContactRepositoryImpl implements ContactRepository {

  @Override
  public void someContactMethod(User user) {
    // Your custom implementation
  }

  @Override
  public User anotherContactMethod(User user) {
    // Your custom implementation
  }
}

以下示例顯示了擴充套件 CrudRepository 的自定義 repository 介面:

您的 repository 介面的更改
interface UserRepository extends CrudRepository<User, Long>, HumanRepository, ContactRepository {

  // Declare query methods here
}

Repositories 可以由多個自定義實現組成,這些實現按照宣告的順序匯入。自定義實現的優先順序高於基礎實現和 repository 切面。這種排序允許您覆蓋基礎 repository 和切面方法,並在兩個片段貢獻相同方法簽名時解決歧義。Repository 片段不限於在單個 repository 介面中使用。多個 repositories 可以使用一個片段介面,從而允許您在不同 repositories 之間重用自定義。

以下示例顯示了一個 repository 片段及其實現:

覆蓋 save(…) 的片段
interface CustomizedSave<T> {
  <S extends T> S save(S entity);
}

class CustomizedSaveImpl<T> implements CustomizedSave<T> {

  @Override
  public <S extends T> S save(S entity) {
    // Your custom implementation
  }
}

以下示例顯示了一個使用前面 repository 片段的 repository:

定製的 repository 介面
interface UserRepository extends CrudRepository<User, Long>, CustomizedSave<User> {
}

interface PersonRepository extends CrudRepository<Person, Long>, CustomizedSave<Person> {
}

配置

repository 基礎架構嘗試透過掃描找到 repository 的包下的類來自動檢測自定義實現片段。這些類需要遵循預設字尾為 Impl 的命名約定。

以下示例顯示了一個使用預設字尾的 repository 和一個設定自定義字尾值的 repository:

示例 1. 配置示例
  • Java

  • XML

@EnableCouchbaseRepositories(repositoryImplementationPostfix = "MyPostfix")
class Configuration { … }
<repositories base-package="com.acme.repository" />

<repositories base-package="com.acme.repository" repository-impl-postfix="MyPostfix" />

前面示例中的第一個配置嘗試查詢名為 com.acme.repository.CustomizedUserRepositoryImpl 的類作為自定義 repository 實現。第二個示例嘗試查詢 com.acme.repository.CustomizedUserRepositoryMyPostfix

歧義解決

如果在不同包中找到多個具有匹配類名的實現,Spring Data 使用 Bean 名稱來確定使用哪個實現。

對於前面所示的 CustomizedUserRepository 的以下兩個自定義實現,將使用第一個實現。它的 Bean 名稱是 customizedUserRepositoryImpl,這與片段介面 (CustomizedUserRepository) 加上字尾 Impl 的名稱匹配。

示例 2. 解決模糊實現
package com.acme.impl.one;

class CustomizedUserRepositoryImpl implements CustomizedUserRepository {

  // Your custom implementation
}
package com.acme.impl.two;

@Component("specialCustomImpl")
class CustomizedUserRepositoryImpl implements CustomizedUserRepository {

  // Your custom implementation
}

如果您用 @Component("specialCustom") 註解 UserRepository 介面,則 Bean 名稱加上 Impl 將與 com.acme.impl.two 中為 repository 實現定義的名稱匹配,並且將使用它而不是第一個實現。

手動裝配

如果您的自定義實現僅使用基於註解的配置和自動裝配,則前面所示的方法非常有效,因為它被視為任何其他 Spring Bean。如果您的實現片段 Bean 需要特殊裝配,您可以宣告該 Bean 並根據前面部分中描述的約定為其命名。然後,基礎架構將引用手動定義的 Bean 定義(按名稱),而不是自己建立一個。以下示例顯示瞭如何手動裝配自定義實現:

示例 3. 手動裝配自定義實現
  • Java

  • XML

class MyClass {
  MyClass(@Qualifier("userRepositoryImpl") UserRepository userRepository) {
    …
  }
}
<repositories base-package="com.acme.repository" />

<beans:bean id="userRepositoryImpl" class="…">
  <!-- further configuration -->
</beans:bean>

使用 spring.factories 註冊片段

正如配置部分已經提到的,基礎架構僅在 repository 基礎包中自動檢測片段。因此,如果片段位於其他位置或希望由外部存檔貢獻,則如果它們不共享一個公共名稱空間,將找不到它們。如以下部分所述,在 spring.factories 中註冊片段可以繞過此限制。

假設您希望提供一些可在組織內跨多個 repository 使用的自定義搜尋功能,利用文字搜尋索引。

首先,您只需要片段介面。請注意泛型引數 <T> 以使片段與 repository 域型別對齊。

片段介面
package com.acme.search;

public interface SearchExtension<T> {

    List<T> search(String text, Limit limit);
}

假設實際的全文搜尋透過註冊為上下文中的 BeanSearchService 提供,因此您可以在 SearchExtension 實現中使用它。執行搜尋所需的一切是集合(或索引)名稱以及將搜尋結果轉換為實際域物件的物件對映器,如下所述。

片段實現
package com.acme.search;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Limit;
import org.springframework.data.repository.core.RepositoryMethodContext;

class DefaultSearchExtension<T> implements SearchExtension<T> {

    private final SearchService service;

    DefaultSearchExtension(SearchService service) {
        this.service = service;
    }

    @Override
    public List<T> search(String text, Limit limit) {
        return search(RepositoryMethodContext.getContext(), text, limit);
    }

    List<T> search(RepositoryMethodContext metadata, String text, Limit limit) {

        Class<T> domainType = metadata.getRepository().getDomainType();

        String indexName = domainType.getSimpleName().toLowerCase();
        List<String> jsonResult = service.search(indexName, text, 0, limit.max());

        return jsonResult.stream().map(…).collect(toList());
    }
}

在上面的示例中,RepositoryMethodContext.getContext() 用於檢索實際方法呼叫的元資料。RepositoryMethodContext 公開附加到 repository 的資訊,例如域型別。在本例中,我們使用 repository 域型別來標識要搜尋的索引的名稱。

暴露呼叫元資料成本較高,因此預設停用。要訪問 RepositoryMethodContext.getContext(),您需要通知負責建立實際 repository 的 repository 工廠暴露方法元資料。

暴露 Repository 元資料
  • 標記介面

  • BeanPostProcessor

RepositoryMetadataAccess 標記介面新增到片段實現將觸發基礎架構,併為使用該片段的 repository 啟用元資料暴露。

package com.acme.search;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Limit;
import org.springframework.data.repository.core.support.RepositoryMetadataAccess;
import org.springframework.data.repository.core.RepositoryMethodContext;

class DefaultSearchExtension<T> implements SearchExtension<T>, RepositoryMetadataAccess {

    // ...
}

可以透過 BeanPostProcessor 直接在 repository 工廠 Bean 上設定 exposeMetadata 標誌。

import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport;
import org.springframework.lang.Nullable;

@Configuration
class MyConfiguration {

    @Bean
    static BeanPostProcessor exposeMethodMetadata() {

        return new BeanPostProcessor() {

            @Override
            public Object postProcessBeforeInitialization(Object bean, String beanName) {

                if(bean instanceof RepositoryFactoryBeanSupport<?,?,?> factoryBean) {
                    factoryBean.setExposeMetadata(true);
                }
                return bean;
            }
        };
    }
}

請不要簡單地複製/貼上上面的內容,而是考慮您的實際用例,這可能需要更細粒度的方法,因為上面的方法會簡單地在每個 repository 上啟用該標誌。

完成片段宣告和實現後,您可以在 META-INF/spring.factories 檔案中註冊擴充套件,並在需要時打包。

META-INF/spring.factories 中註冊片段
com.acme.search.SearchExtension=com.acme.search.DefaultSearchExtension

現在您已準備好使用您的擴充套件;只需將介面新增到您的 repository 中。

使用它
package io.my.movies;

import com.acme.search.SearchExtension;
import org.springframework.data.repository.CrudRepository;

interface MovieRepository extends CrudRepository<Movie, String>, SearchExtension<Movie> {

}

定製基礎 Repository

前面部分中描述的方法需要定製每個 repository 介面,才能定製基礎 repository 的行為,以便所有 repositories 都受到影響。要改變所有 repositories 的行為,您可以建立一個擴充套件特定持久化技術 repository 基類的實現。這個類然後作為 repository 代理的自定義基類,如以下示例所示:

自定義 repository 基類
class MyRepositoryImpl<T, ID>
  extends SimpleJpaRepository<T, ID> {

  private final EntityManager entityManager;

  MyRepositoryImpl(JpaEntityInformation entityInformation,
                          EntityManager entityManager) {
    super(entityInformation, entityManager);

    // Keep the EntityManager around to used from the newly introduced methods.
    this.entityManager = entityManager;
  }

  @Override
  @Transactional
  public <S extends T> S save(S entity) {
    // implementation goes here
  }
}
該類需要具有超類的建構函式,儲存特定 repository 工廠實現將使用該建構函式。如果 repository 基類有多個建構函式,請覆蓋接受 EntityInformation 以及儲存特定基礎架構物件(例如 EntityManager 或模板類)的建構函式。

最後一步是讓 Spring Data 基礎架構瞭解定製的 repository 基類。在配置中,您可以透過使用 repositoryBaseClass 來實現這一點,如以下示例所示:

示例 4. 配置自定義 repository 基類
  • Java

  • XML

@Configuration
@EnableCouchbaseRepositories(repositoryBaseClass = MyRepositoryImpl.class)
class ApplicationConfiguration { … }
<repositories base-package="com.acme.repository"
     base-class="….MyRepositoryImpl" />