我正在使用Query by Example在我的 Spring Boot 应用程序中实现一些复杂的过滤器。
我使用ExampleMatcher来定义必须如何处理 String 属性。所以我在几个需要过滤器的不同控制器中有一个类似于下面的代码:
@GetMapping("/municipio/filter")
public @ResponseBody ResponseEntity<?> filtro(
Municipio municipio,
Pageable page,
PagedResourcesAssembler<Municipio> assembler
){
ExampleMatcher matcher = ExampleMatcher.matching()
.withIgnoreCase()
.withStringMatcher(ExampleMatcher.StringMatcher.CONTAINING);
Example example = Example.of(municipio, matcher);
Page<Municipio> municipios = this.municipioRepository.findAll(example, page);
return ResponseEntity.ok(assembler.toResource(municipios));
}
我想以集中方式定义 ExampleMatcher,以避免在每个控制器中复制此配置。因此,我尝试将其定义为 aBean
并以这种方式注入:
@Configuration
public class AppConfig {
@Bean
public ExampleMatcher getExampleMatcher() {
return ExampleMatcher.matching()
.withIgnoreCase()
.withStringMatcher(ExampleMatcher.StringMatcher.CONTAINING);
}
}
//Withing the controller class
@GetMapping("/municipio/filter")
public @ResponseBody ResponseEntity<?> filtro(
Municipio municipio,
Pageable page,
PagedResourcesAssembler<Municipio> assembler,
ExampleMatcher matcher //ExampleMatcher should be injected by Spring
){
Example example = Example.of(municipio, matcher);
Page<Municipio> municipios = this.municipioRepository.findAll(example, page);
return ResponseEntity.ok(assembler.toResource(municipios));
}
但我收到以下错误:
[未找到接口 org.springframework.data.domain.ExampleMatcher 的主要或默认构造函数]:java.lang.IllegalStateException:未找到接口 org.springframework.data.domain.ExampleMatcher 的主要或默认构造函数
谁能指出我在这里缺少的东西?