Event事件传递 解耦

Posted 杰杰0531

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Event事件传递 解耦相关的知识,希望对你有一定的参考价值。

Event事件传递 解耦

spring中创建bean后,我们在完成对一个bean的操作后,我们希望把运行后的bean结果同步传递给另一个bean。

首先创建一个消息的载体,这个bean需要继承ApplicationEvent类。

1 自定义事件对象

我们也可以在这个事件中定义需要传递的信息

下面我就简单传递一下 演示基本功能

注意哦 生成对应的get set方法

/**
 * 用户注册的事件
 * @author : look-word
 * @date : 2022-04-04 20:52
 **/
public class UserRegisteredEvent extends ApplicationEvent 

    private String name;

    public UserRegisteredEvent(Object source,String name) 
        super(source);
        this.name=name;
    

    public String getName() 
        return name;
    

    public void setName(String name) 
        this.name = name;
    

2 创建事件发布类

执行成功后 发送事件 并携带载体信息

/**
 * 注册用户
 * @author : look-word
 * @date : 2022-04-04 20:48
 **/
@Component
public class Component1 
    /**
     * 发布事件的对象
     */
    @Autowired
    private ApplicationContext context;
    
    public void register()
        System.out.println("注册成功");
        // 注册成功 返回的数据
        String name="张三";
        // 发送事件
        context.publishEvent(new UserRegisteredEvent(this,name));
    

3 创建事件接收类

用于监听并接收消息载体传递的信息

这个类可以继承ApplicationListener类

也可以添加事件监听的注解 @EventListener

/**
 * 发送短信
 * @author : look-word
 * @date : 2022-04-04 20:48
 **/
@Component
public class Component2 
    @EventListener
    public void aaa(UserRegisteredEvent event)
        String name = event.getName();
        System.out.println("短信成功发送给"+name);
        System.out.println(event);
    

测试

@SpringBootApplication
public class A01Application 
    public static void main(String[] args) throws NoSuchFieldException, IllegalAccessException 
        ConfigurableApplicationContext context = SpringApplication.run(A01Application.class, args);
        // 发送事件
        context.getBean(Component1.class).register();
    

以上是关于Event事件传递 解耦的主要内容,如果未能解决你的问题,请参考以下文章

不知道怎么解耦业务?Spring Event 了解一下!

不知道怎么解耦业务?Spring Event 了解一下!

EventBus 简明教程

Spring Boot | 事件监听器异步处理事件,实现代码解耦

事件总线(Event Bus)

Javascript事件函数传递的event对象参数