自定义仓库实现
Spring Data 提供了多种选项来创建查询方法,且只需少量编码。但当这些选项无法满足你的需求时,你也可以为仓库方法提供自定义实现。本节将介绍如何进行操作。
自定义单个仓库
为了丰富仓库的自定义功能,您首先需要定义一个片段接口并实现该自定义功能,如下所示:
interface CustomizedUserRepository {
void someCustomMethod(User user);
}
class CustomizedUserRepositoryImpl implements CustomizedUserRepository {
@Override
public void someCustomMethod(User user) {
// Your custom implementation
}
}
与片段接口对应的类名中最重要的部分是 Impl
后缀。你可以通过设置 @Enable<StoreModule>Repositories(repositoryImplementationPostfix = …)
来自定义存储特定的后缀。
历史上,Spring Data 自定义仓库实现的发现遵循一种 命名模式,该模式从仓库派生出自定义实现类的名称,从而有效地允许单一自定义实现。
位于仓库接口同一包中的类型,如果匹配 仓库接口名称 后跟 实现后缀,则被视为自定义实现,并将被当作自定义实现处理。遵循该名称的类可能会导致不期望的行为。
我们认为单一自定义实现的命名方式已被弃用,建议不要使用这种模式。相反,建议迁移到基于片段的编程模型。
实现本身不依赖于 Spring Data,可以是一个普通的 Spring bean。因此,你可以使用标准的依赖注入行为来注入其他 bean 的引用(例如 JdbcTemplate
),参与切面等。
然后你可以让你的仓库接口继承片段接口,如下所示:
interface UserRepository extends CrudRepository<User, Long>, CustomizedUserRepository {
// Declare query methods here
}
通过将你的存储库接口与片段接口进行扩展,可以将 CRUD 操作和自定义功能结合起来,并将其提供给客户端使用。
Spring Data 仓库是通过使用片段来实现的,这些片段构成了一个仓库组合。片段包括基础仓库、功能方面(如 Querydsl)以及自定义接口及其实现。每次向仓库接口添加一个接口时,都会通过添加一个片段来增强组合。每个 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
的自定义仓库的接口:
interface UserRepository extends CrudRepository<User, Long>, HumanRepository, ContactRepository {
// Declare query methods here
}
存储库可能由多个自定义实现组成,这些实现按照其声明的顺序被导入。自定义实现的优先级高于基础实现和存储库切面。这种顺序允许您覆盖基础存储库和切面方法,并在两个片段贡献相同方法签名时解决歧义。存储库片段不限于在单个存储库接口中使用。多个存储库可以使用一个片段接口,从而使您能够在不同的存储库中重用自定义内容。
以下示例展示了一个仓库片段及其实现:
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
}
}
以下示例展示了一个使用前面仓库片段的仓库:
interface UserRepository extends CrudRepository<User, Long>, CustomizedSave<User> {
}
interface PersonRepository extends CrudRepository<Person, Long>, CustomizedSave<Person> {
}
配置
仓库基础设施会通过扫描在发现仓库的包下面的类来自动检测自定义实现片段。这些类需要遵循命名约定,默认情况下需要附加一个后缀 Impl
。
以下示例展示了一个使用默认后缀的存储库以及一个为后缀设置了自定义值的存储库:
示例 1. 配置示例
- Java
- XML
@EnableRedisRepositories(repositoryImplementationPostfix = "MyPostfix")
class Configuration { … }
<repositories base-package="com.acme.repository" />
<repositories base-package="com.acme.repository" repository-impl-postfix="MyPostfix" />
前面示例中的第一个配置尝试查找名为 com.acme.repository.CustomizedUserRepositoryImpl
的类,以作为自定义仓库实现。第二个示例尝试查找 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
中定义的仓库实现相匹配,并且它会替代第一个实现。
手动装配
如果你的自定义实现仅使用基于注解的配置和自动装配,前面展示的方法会很好地工作,因为它被视为任何其他 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 注册片段
正如在配置部分中已经提到的,基础设施只会自动检测仓库基础包内的片段。因此,位于其他位置的片段或希望通过外部归档贡献的片段,如果它们不共享一个共同的命名空间,将不会被发现。在 spring.factories
中注册片段可以让你绕过这一限制,如下一节所述。
假设你想为你的组织提供一个自定义的搜索功能,该功能可以在多个代码库中使用,并利用文本搜索索引。
首先,你需要的是片段接口。注意泛型 <T>
参数,用于将片段与仓库领域类型对齐。
package com.acme.search;
public interface SearchExtension<T> {
List<T> search(String text, Limit limit);
}
假设实际的全文搜索功能通过一个 SearchService
提供,该服务已经在上下文中注册为一个 Bean
,因此你可以在 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
暴露了附加到存储库的信息,例如域类型。在这种情况下,我们使用存储库域类型来标识要搜索的索引名称。
暴露调用元数据的成本较高,因此默认情况下是禁用的。要访问 RepositoryMethodContext.getContext()
,你需要建议负责创建实际仓库的仓库工厂暴露方法元数据。
- 标记接口
- Bean 后置处理器
在片段实现中添加 RepositoryMetadataAccess
标记接口将触发基础设施,并为使用该片段的仓库启用元数据暴露。
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
直接在仓库工厂 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;
}
};
}
}
请不要直接复制/粘贴上述代码,而是考虑您的实际使用场景,可能需要更细粒度的处理,因为上述代码会简单地为每个仓库启用该标志。
在准备好片段声明和实现之后,你可以在 META-INF/spring.factories
文件中注册扩展,并在需要时进行打包。
com.acme.search.SearchExtension=com.acme.search.DefaultSearchExtension
现在你已经准备好使用你的扩展了;只需将接口添加到你的仓库中即可。
package io.my.movies;
import com.acme.search.SearchExtension;
import org.springframework.data.repository.CrudRepository;
interface MovieRepository extends CrudRepository<Movie, String>, SearchExtension<Movie> {
}
自定义基础仓库
在上一节中描述的方法要求当你想自定义基础仓库行为时,需要对每个仓库接口进行定制,以便所有仓库都受到影响。相反,若要为所有仓库更改行为,你可以创建一个扩展了特定持久化技术的基础仓库类的实现。然后,这个类将作为仓库代理的自定义基类,如下例所示:
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
}
}
类需要具有超类的构造函数,这是特定于存储库的工厂实现所使用的。如果存储库基类有多个构造函数,请重写接受 EntityInformation
加上特定于存储的基础结构对象(如 EntityManager
或模板类)的那个构造函数。
最后一步是让 Spring Data 基础设施感知到自定义的仓库基类。在配置中,你可以通过使用 repositoryBaseClass
来实现这一点,如下例所示:
示例 4. 配置自定义存储库基类
- Java
- XML
@Configuration
@EnableRedisRepositories(repositoryBaseClass = MyRepositoryImpl.class)
class ApplicationConfiguration { … }
<repositories base-package="com.acme.repository"
base-class="….MyRepositoryImpl" />