建立 Repository 例項
本節介紹如何為定義的 Repository 介面建立例項和 bean 定義。
Java 配置
在 Java 配置類上使用特定於儲存的 @EnableCassandraRepositories
註解,為 repository 啟用定義配置。有關 Spring 容器的基於 Java 的配置介紹,請參閱 Spring 參考文件中的 JavaConfig。
啟用 Spring Data repositories 的示例配置類似於以下內容
@Configuration
@EnableJpaRepositories("com.acme.repositories")
class ApplicationConfiguration {
@Bean
EntityManagerFactory entityManagerFactory() {
// …
}
}
前面的示例使用了 JPA 特定的註解,您需要根據實際使用的儲存模組進行更改。這同樣適用於 EntityManagerFactory bean 的定義。請參閱涵蓋特定於儲存的配置的部分。 |
XML 配置
每個 Spring Data 模組都包含一個 repositories
元素,允許您定義 Spring 為您掃描的基礎包,如下例所示
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/data/jpa"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/data/jpa
https://www.springframework.org/schema/data/jpa/spring-jpa.xsd">
<jpa:repositories base-package="com.acme.repositories" />
</beans:beans>
在上面的示例中,指示 Spring 掃描 com.acme.repositories
及其所有子包,以查詢擴充套件 Repository
或其子介面的介面。對於找到的每個介面,基礎設施都會註冊特定於持久化技術的 FactoryBean
,以建立處理查詢方法呼叫的相應代理。每個 bean 都註冊在其派生自介面名稱的 bean 名稱下,因此 UserRepository
介面將註冊在 userRepository
下。巢狀 repository 介面的 bean 名稱以其包含型別的名稱為字首。基本包屬性允許使用萬用字元,以便您可以定義掃描包的模式。
使用過濾器
預設情況下,基礎設施會拾取配置的基礎包下擴充套件特定於持久化技術的 Repository
子介面的每個介面,併為其建立 bean 例項。但是,您可能希望對哪些介面建立 bean 例項進行更精細的控制。為此,可以使用 repository 宣告中的 filter 元素。其語義與 Spring 元件過濾器中的元素完全相同。有關詳細資訊,請參閱 Spring 參考文件中有關這些元素的內容。
例如,要將某些介面從例項化為 repository bean 中排除,可以使用以下配置
-
Java
-
XML
@Configuration
@EnableCassandraRepositories(basePackages = "com.acme.repositories",
includeFilters = { @Filter(type = FilterType.REGEX, pattern = ".*SomeRepository") },
excludeFilters = { @Filter(type = FilterType.REGEX, pattern = ".*SomeOtherRepository") })
class ApplicationConfiguration {
@Bean
EntityManagerFactory entityManagerFactory() {
// …
}
}
<repositories base-package="com.acme.repositories">
<context:include-filter type="regex" expression=".*SomeRepository" />
<context:exclude-filter type="regex" expression=".*SomeOtherRepository" />
</repositories>
前面的示例包含所有以 SomeRepository
結尾的介面,並排除了以 SomeOtherRepository
結尾的介面的例項化。
獨立使用
您也可以在 Spring 容器外部使用 repository 基礎設施——例如,在 CDI 環境中。您仍然需要類路徑中包含一些 Spring 庫,但通常也可以透過程式設計方式設定 repositories。提供 repository 支援的 Spring Data 模組附帶了一個特定於持久化技術的 RepositoryFactory
,您可以按如下方式使用
RepositoryFactorySupport factory = … // Instantiate factory here
UserRepository repository = factory.getRepository(UserRepository.class);