当前位置:   article > 正文

SpringBoot中实现消息的发布与订阅_springboot发布订阅

springboot发布订阅

一、前言
在项目开发过程中,经常会遇到一些除主线业务之外的其它业务,比如:在核心业务方法执行过后,去记录日志或者发送邮件和短信通知。但是对于用户来说这些操作都是不可见的,所以为了提高接口的响应速率以此提高用户的体验,我们可以使用到SpringBoot中的消息发布与订阅模式。

二、具体实现
为了更好的描述消息的发布与订阅,本文中将以模拟用户注册和登录成功之后发送通知消息来进行演示。

1.定义消息事件
通过继承Spring官方提供的 ApplicationEvent 接口定义自己的应用消息事件:
 

  1. public class ApplicationMessageEvent extends ApplicationEvent {
  2. private static final long serialVersionUID = -945889113683338622L;
  3. public ApplicationMessageEvent(Object source) {
  4. super(source);
  5. }
  6. }

接下来分别定义注册成功和登录成功的消息事件,目的是区分不同的事件消息

定义注册成功的消息事件:

  1. public class UserRegisterEvent extends ApplicationMessageEvent{
  2. private static final long serialVersionUID = -6027272882727163945L;
  3. public UserRegisterEvent(Object source) {
  4. super(source);
  5. }
  6. }

定义登录成功的消息事件:

  1. public class UserLoginEvent extends ApplicationMessageEvent{
  2. private static final long serialVersionUID = -90742928698794549L;
  3. public UserLoginEvent(Object source) {
  4. super(source);
  5. }
  6. }

2.自定义线程池
用于指定异步处理消息时使用的线程池(非必须),如果不进行这一步操作,Spring会使用默认的线程池

  1. @Configuration
  2. public class TaskPoolConfig {
  3. @Bean("myAsyncExecutor")
  4. public Executor taskExecutor() {
  5. ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
  6. executor.setCorePoolSize(7);
  7. executor.setMaxPoolSize(15);
  8. executor.setQueueCapacity(50);
  9. executor.setKeepAliveSeconds(60);
  10. executor.setThreadNamePrefix("my-async-executor-");
  11. executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
  12. return executor;
  13. }
  14. }

3.发送消息事件
发送事件消息时需要注入Spring官方提供的 ApplicationEventPublisher 类,并且调用 publishEvent 方法发送事件

  1. @Service
  2. @Slf4j
  3. public class UserService {
  4. @Autowired
  5. private ApplicationEventPublisher applicationEventPublisher;
  6. public void imitateLogin() {
  7. log.info("用户成功登录");
  8. applicationEventPublisher.publishEvent(new UserLoginEvent("发送一条登录成功的消息"));
  9. }
  10. public void imitateRegister() {
  11. log.info("用户成功注册");
  12. applicationEventPublisher.publishEvent(new UserRegisterEvent("发送一条注册成功的消息"));
  13. }
  14. }

4.监听消息事件
@EventListener:创建时间监听器

@Async(“myAsyncExecutor”):myAsyncExecutor为自定义的线程池        

  1. @Component
  2. @Slf4j
  3. public class ApplicationMessageListener {
  4. @EventListener
  5. @Async("myAsyncExecutor")
  6. public void listenEvent(ApplicationMessageEvent event) {
  7. Object source = event.getSource();
  8. if (event instanceof UserLoginEvent) {
  9. log.info("监听到登录成功消息:{}", source);
  10. }
  11. if (event instanceof UserRegisterEvent) {
  12. log.info("监听到注册成功消息:{}", source);
  13. }
  14. }
  15. }

5.开启异步线程

@EnableAsync:在主启动类上加上此注解表示开启异步线程
  1. @SpringBootApplication
  2. @EnableAsync
  3. public class EventSpringBootApplication {
  4. public static void main(String[] args) {
  5. SpringApplication.run(EventSpringBootApplication.class, args);
  6. }
  7. }

6.运行测试

  1. 2023-04-19 16:59:23.504 INFO 33280 --- [nio-8888-exec-1] com.aben.event.service.UserService : 用户成功注册
  2. 2023-04-19 16:59:23.531 INFO 33280 --- [sync-executor-1] c.a.e.l.ApplicationMessageListener : 监听到注册成功消息:发送一条注册成功的消息
  3. 2023-04-19 16:59:47.921 INFO 33280 --- [nio-8888-exec-5] com.aben.event.service.UserService : 用户成功登录
  4. 2023-04-19 16:59:47.922 INFO 33280 --- [sync-executor-2] c.a.e.l.ApplicationMessageListener : 监听到登录成功消息:发送一条登录成功的消息

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/798423
推荐阅读
相关标签
  

闽ICP备14008679号