@QuerydslPredicate重写customize不生效的原因之一

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档


前言

记录一次@QuerydslPredicate(root = Class) Predicate predicate的小bug

一、复现步骤

1.Controller层

代码如下(示例):

@RestController
@RequestMapping("/book")
public class BookController {

    @Autowired
    private BookBaseRepository bookRepository;


    @GetMapping()
    public ResponseEntity<?> list(@QuerydslPredicate(root = Book.class) Predicate predicate,
                                  @PageableDefault(page = 0, size = 10) Pageable pageable) {
        return ResponseEntity.ok(bookRepository.findAll(predicate,pageable));
    }

  
}

2.Repository层

代码如下(示例):

@Repository
public interface BookBaseRepository extends JpaRepository<Book, Long>,
        JpaSpecificationExecutor<Book>,
        QuerydslPredicateExecutor<Book>,
        QuerydslBinderCustomizer<QBook> {

    @Override
    default void customize(QuerydslBindings bindings, QBook root) {
        bindings.bind(root.bookName).first(((path, value) -> path.likeIgnoreCase("%" + value + "%")));
    }
}

使用http://127.0.0.1:8081/book?bookName=龙族一url,并不会调用customize方法


3.原因分析


在QuerydslBindingsFactory类被初始化时,参数repositories会进行实例类与Repository层的关系,并且为一一对应的,如果有多个Repository导致关系不会被正确对应,从而无法调用。

	@Override
	public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {

		this.beanFactory = Optional.of(applicationContext.getAutowireCapableBeanFactory());
		this.repositories = Optional.of(new Repositories(applicationContext));
		this.defaultCustomizer = findDefaultCustomizer();
	}

总结

这个基本只在学习过程中出现,在实际开发过程一般不出现。
在这里记录一下。

@LoadBalanced 注解可以让 RestTemplate 具有客户端负载均衡能力,它会在 RestTemplate 中添加一个拦截器,用于将请求转发到多个服务实例中的一个。下面是一个通过 RestTemplateCustomizer 接口来添加 @LoadBalanced 注解的示例代码: ```java @Configuration public class MyRestTemplateConfig { @Bean @LoadBalanced public RestTemplate restTemplate(RestTemplateBuilder builder, MyRestTemplateCustomizer customizer) { RestTemplate restTemplate = builder.build(); customizer.customize(restTemplate); return restTemplate; } @Component public static class MyRestTemplateCustomizer implements RestTemplateCustomizer { @Override public void customize(RestTemplate restTemplate) { restTemplate.getInterceptors().add(new MyInterceptor()); } private static class MyInterceptor implements ClientHttpRequestInterceptor { @Override public ClientHttpResponse intercept(HttpRequest request, byte[] body, ClientHttpRequestExecution execution) throws IOException { // 在发送请求前对请求进行拦截处理,例如添加请求头、请求参数等 return execution.execute(request, body); } } } } ``` 在上述代码中,我们通过 @LoadBalanced 注解为 RestTemplate 添加了负载均衡的能力,并通过 RestTemplateCustomizer 接口中的 MyRestTemplateCustomizer 类来添加了自定义的拦截器。在 MyRestTemplateConfig 类中,我们将 RestTemplateBuilder 和 MyRestTemplateCustomizer 作为参数注入到 restTemplate 方法中,并在方法中添加了 @LoadBalanced 注解,从而为 RestTemplate 添加了负载均衡的能力。最后,我们将 MyRestTemplateConfig 注册为 Spring 配置类即可。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值