• SpringBoot监听器之发布订阅、观察者模式


    SpringBoot监听器使用
    实现方式有2种:实现ApplicationListener 接口;添加@EventListener 注解。
    必须要的角色:
    1、事件(event)可以封装和传递监听器中要处理的参数,如对象或字符串,并作为监听器中监听的目标。
    2、监听器(listener)具体根据事件发生的业务处理模块,这里可以接收处理事件中封装的对象或字符串。
    3、事件发布者(publisher)事件发生的触发者。

    接口实现:
    自定义事件需要继承Spring的ApplicationEvent
    自定义监听器需要实现ApplicationListener
    自定义事件发布需要自动注入了ApplicationEventPublisher
    注解实现:
    自定义事件需要继承Spring的ApplicationEvent
    自定义监听器,在自定义的方法上添加@EventListener
    自定义事件发布需要自动注入了ApplicationEventPublisher

    参考:
    https://segmentfault.com/a/1190000039097608

    MyEvent

    import org.springframework.context.ApplicationEvent;
    
    public class MyEvent extends ApplicationEvent {
        private String msg;
    
        public MyEvent(Object source) {
            super(source);
        }
    
        public MyEvent(Object source, String msg) {
            super(source);
            this.msg = msg;
        }
    
        public String getMsg() {
            return msg;
        }
    
        public void setMsg(String msg) {
            this.msg = msg;
        }
    }
    

    MyEventTwo

    import org.springframework.context.ApplicationEvent;
    
    public class MyEventTwo extends ApplicationEvent {
        private String msg;
    
        public MyEventTwo(Object source) {
            super(source);
        }
    
        public MyEventTwo(Object source, String msg) {
            super(source);
            this.msg = msg;
        }
    
        public String getMsg() {
            return msg;
        }
    
        public void setMsg(String msg) {
            this.msg = msg;
        }
    }
    
    

    MyAnnotationListener

    import org.springframework.context.ApplicationEvent;
    import org.springframework.context.event.EventListener;
    import org.springframework.stereotype.Component;
    
    @Component
    public class MyAnnotationListener {
        @EventListener(classes={MyEvent.class,MyEventTwo.class})
        public void listener(ApplicationEvent applicationEvent){
            if(applicationEvent instanceof MyEvent){
                System.out.println("MyAnnotationListener - MyEvent:"+((MyEvent) applicationEvent).getMsg());
            }
    
            if(applicationEvent instanceof MyEventTwo){
                System.out.println("MyAnnotationListener - MyEventTwo:"+((MyEventTwo) applicationEvent).getMsg());
            }
    
        }
    
        @EventListener
        public void listenerTestOne(MyEvent myEvent){
            System.out.println("listenerTestOne"+myEvent.getMsg());
        }
    
        @EventListener
        public void listenerTestTwo(MyEventTwo myEventTwo){
            System.out.println("listenerTestTwo"+myEventTwo.getMsg());
        }
    }
    

    MyEventPubLisher

    
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.context.ApplicationEventPublisher;
    import org.springframework.stereotype.Component;
    
    @Component
    public class MyEventPubLisher {
        @Autowired
        private ApplicationEventPublisher applicationEventPublisher;
    
        public void pushListener(String msg) {
            applicationEventPublisher.publishEvent(new MyEvent(this, msg));
        }
    
        public void pushListenerTwo(String msg) {
            applicationEventPublisher.publishEvent(new MyEventTwo(this, msg));
        }
    
    }
    

    ObserverController 测试接口

    import com.tech.elasticsearch.observer.MyEventPubLisher;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @RestController
    @RequestMapping("/observer")
    public class ObserverController {
        @Autowired
        private MyEventPubLisher myEventPubLisher;
    
        @GetMapping("/publish1")
        public void publisher(String msg){
            myEventPubLisher.pushListener(msg);
        }
    
        @GetMapping("/publish2")
        public void pushListenerTwo(String msg){
            myEventPubLisher.pushListenerTwo(msg);
        }
    }
    

    说明:在MyAnnotationListener类中
    如果参数为ApplicationEvent applicationEvent
    @EventListener(classes={MyEvent.class,MyEventTwo.class}),则只监听这2个类
    @EventListener,则监听所有继承了ApplicationEvent的类

    如果参数为MyEvent myEvent或者MyEventTwo myEventTwo
    @EventListener,只监听参数类型的事件

  • 相关阅读:
    codeforces 732D
    我的ubuntu配置
    周末实在无聊,自己写了一遍被人写烂了的“贪吃蛇”,欢迎各位新手低手高手老手前来吐槽哈哈
    两种方式实现点击列表弹出列表索引
    浅谈javascript中原型(prototype)、构造函数、对象实例及三者之间的关系
    写了个超级简单的“进度条”的demo,供新手参考,高手吐槽!
    javascript 使用 NodeList主意的问题
    js中的“||”和“&&”
    javascript call函数实现继承时遇到的问题
    javascript 解决innerText浏览器兼容
  • 原文地址:https://www.cnblogs.com/InternetJava/p/15731288.html
Copyright © 2020-2023  润新知