摘要: 项目中使用RestTemplate 通常会有如下使用,加上@LoadBalanced注解使restTemplate具有负载均衡能力 @LoadBalanced @Bean RestTemplate restTemplate() { return new RestTemplate(); } openf 阅读全文
posted @ 2022-09-29 15:03 爱生活(^_-) 阅读(28) 评论(0) 推荐(0)
摘要: 一、介绍 功能就是发布事件,也就是把某个事件告诉的所有与这个事件相关的监听器。 1、使用ApplicationEventPublisher 可以进行事件发布 2.ApplicationListener ApplicationListener接口是由 Spring 提供的事件订阅者必须实现的接口,我们 阅读全文
posted @ 2022-09-29 14:55 爱生活(^_-) 阅读(225) 评论(0) 推荐(0)