Spring高手之路7——事件机制与监听器的全面探索

文章目录

  • 1. Spring中的观察者模式
  • 2. 监听器
    • 2.1 实现ApplicationListener接口创建监听器
    • 2.2 @EventListener注解创建监听器
    • 2.3 对比ApplicationListener接口和@EventListener注解的创建方式
  • 3. Spring的事件机制
    • 3.1 ApplicationEvent
    • 3.2 ApplicationContextEvent
    • 3.3 ContextRefreshedEvent 和 ContextClosedEvent
    • 3.4 ContextStartedEvent 和 ContextStoppedEvent
  • 4. 自定义事件开发
    • 4.1 注解式监听器和接口式监听器对比触发时机
    • 4.2 @Order注解调整监听器的触发顺序

1. Spring中的观察者模式

  观察者模式是一种行为设计模式,它定义了对象之间的依赖关系,当一个对象的状态发生改变时,所有依赖于它的对象都会得到通知并被自动更新。在这个模式中,改变状态的对象被称为主题,依赖的对象被称为观察者。

举个实际的例子:

  1. 事件源(Event Source):可以视为“主题(Subject)”,当其状态发生变化时(比如播放新的内容),会通知所有的观察者。想象我们正在听广播,广播电台就是一个事件源,它提供了大量的新闻、音乐和其他内容。

  2. 事件(Event):这是主题状态改变的具体表示,对应到广播例子中,就是新闻、音乐和其他内容。每当电台播放新的内容时,就相当于一个新的事件被发布了。

  3. 广播器(Event Publisher / Multicaster):广播器起到的是中介的作用,它将事件从事件源传递到监听器。在这个例子中,广播塔就充当了这个角色,它将电台的节目的无线电信号发送到空气中,以便无线电接收器(监听器)可以接收。

  4. 监听器(Listener):监听器就是“观察者”,它们监听并响应特定的事件。在例子中,无线电接收器就是监听器,它接收广播塔发出的信号,然后播放电台的内容。

Spring中,事件模型的工作方式也是类似的:

  1. Spring应用程序中发生某个行为时(比如一个用户完成了注册),那么产生这个行为的组件(比如用户服务)就会创建一个事件,并将它发布出去。
  2. 事件一旦被发布,SpringApplicationContext就会作为广播器,把这个事件发送给所有注册的监听器。
  3. 各个监听器接收到事件后,就会根据事件的类型和内容,进行相应的处理(比如发送欢迎邮件,赠送新用户优惠券等)。

  这就是Spring事件模型的工作原理,它实现了事件源、广播器和监听器之间的解耦,使得事件的生产者和消费者可以独立地进行开发和修改,增强了程序的灵活性和可维护性。


2. 监听器

2.1 实现ApplicationListener接口创建监听器

  首先,我们创建一个监听器。在Spring框架中,内置的监听器接口是ApplicationListener,这个接口带有一个泛型参数,代表要监听的具体事件。我们可以通过实现这个接口来创建自定义的监听器。

  当所有的Bean都已经被初始化后,Spring会发布一个ContextRefreshedEvent事件,告知所有的监听器,应用上下文已经准备好了,我们可以创建一个监听器来监听ContextRefreshedEvent事件

全部代码如下:

package com.example.demo.listener;import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;@Component
public class MyContextRefreshedListener implements ApplicationListener<ContextRefreshedEvent> {@Overridepublic void onApplicationEvent(ContextRefreshedEvent event) {System.out.println("MyContextRefreshedListener收到ContextRefreshedEvent事件!");}
}

注意,我们使用@Component注解来标记这个监听器,这样在Spring进行包扫描的时候能够找到并自动注册它。

接下来,我们需要创建一个启动类来启动IOC容器并测试这个监听器。

主程序:

package com.example.demo;import org.springframework.context.annotation.AnnotationConfigApplicationContext;public class DemoApplication {public static void main(String[] args) {System.out.println("开始初始化IOC容器...");AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext("com.example.demo.listener");System.out.println("IOC容器初始化完成...");ctx.close();System.out.println("IOC容器已关闭...");}}

运行这个程序会看到控制台上输出了在MyContextRefreshedListener中打印的消息,表明监听器成功接收到了事件。

运行结果:

在这里插入图片描述

2.2 @EventListener注解创建监听器

  除了通过实现ApplicationListener接口来创建监听器,我们还可以通过注解来创建。Spring提供了@EventListener注解,我们可以在任何一个方法上使用这个注解来指定这个方法应该在收到某种事件时被调用。

  比如,我们可以创建一个新的监听器来监听ContextClosedEvent事件,这个事件代表Spring的应用上下文即将关闭:

增加一个MyContextClosedListener类,方便和前面接口创建监听器进行对比

@Component
public class MyContextClosedListener {@EventListenerpublic void handleContextClosedEvent(ContextClosedEvent event) {System.out.println("MyContextClosedListener收到ContextClosedEvent事件!");}
}

运行结果:

在这里插入图片描述

  ContextClosedEvent事件是在Spring应用上下文被关闭时发布的,这通常在所有的单例Bean已经被销毁之后。通过监听这个事件,我们可以在应用上下文关闭时执行一些清理工作。

2.3 对比ApplicationListener接口和@EventListener注解的创建方式

  1. 使用ApplicationListener接口:

上面说过,由于ApplicationListener接口是泛型接口,这个接口带有一个泛型参数,代表要监听的具体事件。

创建ContextRefreshedEvent事件的监听器:

import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;@Component
public class ContextRefreshedListener implements ApplicationListener<ContextRefreshedEvent> {@Overridepublic void onApplicationEvent(ContextRefreshedEvent event) {System.out.println("Received ContextRefreshedEvent - Context refreshed!");}
}

创建ContextClosedEvent事件的监听器:

import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextClosedEvent;
import org.springframework.stereotype.Component;@Component
public class ContextClosedListener implements ApplicationListener<ContextClosedEvent> {@Overridepublic void onApplicationEvent(ContextClosedEvent event) {System.out.println("Received ContextClosedEvent - Context closed!");}
}
  1. 使用@EventListener注解:
import org.springframework.context.event.ContextClosedEvent;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.context.event.EventListener;
import org.springframework.stereotype.Component;@Component
public class ApplicationContextEventListener {@EventListenerpublic void handleContextRefreshedEvent(ContextRefreshedEvent event) {System.out.println("Received ContextRefreshedEvent - Context refreshed!");}@EventListenerpublic void handleContextClosedEvent(ContextClosedEvent event) {System.out.println("Received ContextClosedEvent - Context closed!");}
}

  在上述代码中,我们使用@EventListener注解定义了两个方法,分别处理ContextRefreshedEventContextClosedEvent事件。不论何时ContextRefreshedEventContextClosedEvent被发布,相应的监听器就会被触发,然后在控制台打印出相应的信息。

  • ContextRefreshedEvent 事件在 Spring 容器初始化或者刷新时触发,此时所有的 Bean 都已经被完全加载,且 post-processor 也已经被调用,但此时容器尚未开始接收请求。

  • ContextClosedEvent 事件在 Spring 容器关闭时触发,此时容器尚未销毁所有 Bean。当接收到这个事件后可以做一些清理工作。


3. Spring的事件机制

  在 Spring 中,事件(Event)和监听器(Listener)是两个核心概念,它们共同构成了 Spring 的事件机制。这一机制使得在 Spring 应用中,组件之间可以通过发布和监听事件来进行解耦的交互。

Spring中有4个默认的内置事件

  • ApplicationEvent
  • ApplicationContextEvent
  • ContextRefreshedEventContextClosedEvent
  • ContextStartedEventContextStoppedEvent

我们分别来看一下

3.1 ApplicationEvent

  在 Spring 中,ApplicationEvent 是所有事件模型的抽象基类,它继承自 Java 原生的 EventObjectApplicationEvent 本身是一个抽象类,它并未定义特殊的方法或属性,只包含事件发生时的时间戳,这意味着我们可以通过继承ApplicationEvent来创建自定义的事件。

  比如我们希望创建自定义事件,可以直接继承 ApplicationEvent 类。

完整代码如下:

创建一个 CustomApplicationEvent

package com.example.demo.event;import org.springframework.context.ApplicationEvent;public class CustomApplicationEvent extends ApplicationEvent {private String message;public CustomApplicationEvent(Object source, String message) {super(source);this.message = message;}public String getMessage() {return message;}
}

然后创建一个监听器来监听这个自定义事件:

package com.example.demo.listener;import com.example.demo.event.CustomApplicationEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component;@Component
public class CustomApplicationEventListener implements ApplicationListener<CustomApplicationEvent> {@Overridepublic void onApplicationEvent(CustomApplicationEvent event) {System.out.println("Received custom event - " + event.getMessage());}
}

最后,在应用中的某个地方发布这个自定义事件:

package com.example.demo.event;import org.springframework.context.ApplicationEventPublisher;
import org.springframework.stereotype.Component;@Component
public class CustomEventPublisher {private final ApplicationEventPublisher publisher;public CustomEventPublisher(ApplicationEventPublisher publisher) {this.publisher = publisher;}public void doSomethingAndPublishAnEvent(final String message) {System.out.println("Publishing custom event.");CustomApplicationEvent customApplicationEvent = new CustomApplicationEvent(this, message);publisher.publishEvent(customApplicationEvent);}
}

  当调用 doSomethingAndPublishAnEvent() 方法时,CustomApplicationEventListener 就会收到 CustomApplicationEvent 并打印出自定义消息,这就是通过继承ApplicationEvent自定义事件并进行监听的一种方式。

主程序:

package com.example.demo;import com.example.demo.event.CustomEventPublisher;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;public class DemoApplication {public static void main(String[] args) {AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext("com.example.demo");CustomEventPublisher publisher = context.getBean(CustomEventPublisher.class);publisher.doSomethingAndPublishAnEvent("hello world");}
}

  有人可能会疑惑,context.getBean(CustomEventPublisher.class)为什么不报错呢?CustomEventPublisher只有一个带参数的构造方法啊。

  从Spring 4.3开始,如果类只有一个构造方法,那么Spring将会自动把这个构造方法当作是我们希望进行自动装配的构造方法,无需显式地添加@Autowired@inject注解。如果类有多个构造方法,并且没有在任何构造方法上使用@Autowired@inject注解,那么Spring将会使用无参数的构造方法(如果存在的话)来创建这个类的实例。Spring会尝试在已经创建的bean中寻找能够满足构造器参数要求的bean,并自动将这些bean注入到构造方法中,这就是所谓的自动装配。

  在这个例子中,CustomEventPublisher这个类只有一个带有ApplicationEventPublisher参数的构造方法。Spring在创建CustomEventPublisher的实例时,会尝试寻找一个已经创建的ApplicationEventPublisher类型的bean来满足这个构造方法的参数要求。

  而ApplicationEventPublisherSpring内置的一个接口,对应的实例是在Spring容器启动时就已经被Spring自动创建好的,因此Spring能够找到一个ApplicationEventPublisher类型的bean,然后将这个bean注入到CustomEventPublisher的构造方法中,这样就能够成功创建CustomEventPublisher的实例。

  所以,即使CustomEventPublisher这个类没有无参构造器,Spring也可以通过自动装配功能成功地创建这个类的实例。

运行结果:

在这里插入图片描述

3.2 ApplicationContextEvent

  ApplicationContextEventApplicationEvent 的子类,它代表了与 Spring 应用上下文(ApplicationContext)有关的事件。这个抽象类在构造方法中接收一个 ApplicationContext 对象作为事件源(source)。这意味着在事件触发时,我们可以通过事件对象直接获取到发生事件的应用上下文,而不需要进行额外的操作。

在这里插入图片描述

  Spring 内置了一些事件,如 ContextRefreshedEventContextClosedEvent,这些都是 ApplicationContextEvent 的子类。ApplicationContextEventApplicationEvent 的子类,专门用来表示与Spring应用上下文相关的事件。虽然 ApplicationContextEvent 是一个抽象类,但在实际使用时,通常会使用其具体子类,如 ContextRefreshedEventContextClosedEvent,而不是直接使用 ApplicationContextEvent。另外,虽然我们可以创建自定义的 ApplicationContextEvent 子类或 ApplicationEvent 子类来表示特定的事件,但这种情况比较少见,因为大多数情况下,Spring内置的事件类已经能满足我们的需求。

3.3 ContextRefreshedEvent 和 ContextClosedEvent

  ContextRefreshedEvent 事件在 Spring 容器初始化或者刷新时触发,此时所有的 Bean 都已经被完全加载,且 post-processor 也已经被调用,但此时容器尚未开始接收请求。

  ContextClosedEvent 事件在 Spring 容器关闭时触发,此时容器尚未销毁所有 Bean。当接收到这个事件后可以做一些清理工作。

  这里我们再次演示实现接口来创建监听器,不过和2.3节不同,我们只创建的1个类,同时处理ContextRefreshedEventContextClosedEvent事件。这里实现ApplicationListener接口,泛型参数使用ContextRefreshedEventContextClosedEvent的父类ApplicationEvent

  在Spring中创建一个类来监听多个事件,然后在onApplicationEvent方法中检查事件的类型。

全部代码如下:

package com.example.demo.listener;import org.springframework.context.ApplicationEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextClosedEvent;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;@Component
public class MyApplicationContextEventListener implements ApplicationListener<ApplicationEvent> {@Overridepublic void onApplicationEvent(ApplicationEvent event) {if (event instanceof ContextRefreshedEvent) {System.out.println("Context Refreshed Event received.");// Handle the event} else if (event instanceof ContextClosedEvent) {System.out.println("Context Closed Event received.");// Handle the event}}
}

主程序:

package com.example.demo;import org.springframework.context.annotation.AnnotationConfigApplicationContext;public class DemoApplication {public static void main(String[] args) {System.out.println("开始初始化IOC容器...");AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext("com.example.demo");System.out.println("IOC容器初始化完成...");context.close();System.out.println("IOC容器已关闭...");}
}

运行结果:

在这里插入图片描述

  在这个例子中,MyApplicationContextEventListener现在只实现了ApplicationListener<ApplicationEvent>接口。然后在onApplicationEvent方法中,我们检查事件的类型,并根据事件的类型执行相应的操作。这样我们就可以在同一个监听器中处理多种类型的事件了。

3.4 ContextStartedEvent 和 ContextStoppedEvent

  • ContextStartedEvent:这是Spring应用上下文的启动事件。当调用实现了 Lifecycle 接口的 Beanstart 方法时,Spring会发布这个事件。这个事件的发布标志着Spring应用上下文已经启动完成,所有的Bean都已经被初始化并准备好接收请求。我们可以监听这个事件来在应用上下文启动后执行一些自定义逻辑,比如开启一个新线程,或者连接到一个远程服务等。

  • ContextStoppedEvent:这是Spring应用上下文的停止事件。当调用实现了 Lifecycle 接口的 Beanstop 方法时,Spring会发布这个事件。这个事件的发布标志着Spring应用上下文开始停止的过程,此时Spring将停止接收新的请求,并开始销毁所有的Singleton Bean。我们可以监听这个事件来在应用上下文停止前执行一些清理逻辑,比如关闭数据库连接,释放资源等。

  有人可能会疑问了,实现了 Lifecycle 接口的 Beanstart 方法和stop方法是什么?这与@PostConstruct@PreDestroy有什么区别?

  Lifecycle 接口有startstop2个方法,start() 方法将在所有 Bean 都已被初始化后,整个应用上下文启动时被调用,而 stop() 方法将在应用上下文关闭,但是在所有单例 Bean 被销毁之前被调用。这意味着这些方法将影响整个应用上下文的生命周期。

  总的来说,@PostConstruct@PreDestroy 主要关注单个 Bean 的生命周期,而 Lifecycle 接口则关注整个应用上下文的生命周期。

  言归正传,回到这小节的主题,当 Spring 容器接收到 ContextStoppedEvent 事件时,它会停止所有的单例 Bean,并释放相关资源。

全部代码如下:

package com.example.demo.listener;import org.springframework.context.ApplicationEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextStartedEvent;
import org.springframework.context.event.ContextStoppedEvent;
import org.springframework.stereotype.Component;@Component
public class MyContextStartStopEventListener implements ApplicationListener<ApplicationEvent> {@Overridepublic void onApplicationEvent(ApplicationEvent event) {if (event instanceof ContextStartedEvent) {System.out.println("Context Started Event received.");// Handle the event} else if (event instanceof ContextStoppedEvent) {System.out.println("Context Stopped Event received.");// Handle the event}}
}
package com.example.demo;import org.springframework.context.annotation.AnnotationConfigApplicationContext;public class DemoApplication {public static void main(String[] args) {AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext("com.example.demo");// 触发 ContextStartedEventcontext.start();// 触发 ContextStoppedEventcontext.stop();}
}

运行结果:

在这里插入图片描述

  对于ContextStartedEventContextStoppedEvent事件来说,需要手动调用context.start()context.stop()来触发这两个事件。ContextStartedEvent事件是在ApplicationContext启动并且所有单例bean在完全初始化后被发布的,而ContextStoppedEvent事件是在ApplicationContext停止时发布的。

  为什么这里context.start()context.stop()能触发ContextStartedEvent事件和ContextStoppedEvent事件呢?

  我们来看看源码,在 Spring 中,AnnotationConfigApplicationContext 并没有直接实现 Lifecycle 接口。

在这里插入图片描述

  但是从图中我们可以看到,AnnotationConfigApplicationContext 继承自 GenericApplicationContextGenericApplicationContext继承自 AbstractApplicationContext抽象类。AbstractApplicationContext 类实现了 ConfigurableApplicationContext 接口,这个ConfigurableApplicationContext接口继承了 Lifecycle 接口。

  所以,从类的继承层次上来看,AnnotationConfigApplicationContext 是间接实现了 Lifecycle 接口的。当我们在 AnnotationConfigApplicationContext 的对象上调用 start()stop() 方法时,它就会触发相应的 ContextStartedEventContextStoppedEvent 事件。

  在实际的Spring应用中,很少需要手动调用start()stop()方法。这是因为Spring框架已经为我们处理了大部分的生命周期控制,比如bean的创建和销毁,容器的初始化和关闭等。


4. 自定义事件开发

4.1 注解式监听器和接口式监听器对比触发时机

需求背景:假设正在开发一个论坛应用,当新用户成功注册后,系统需要进行一系列的操作。这些操作包括:

  1. 向用户发送一条确认短信;
  2. 向用户的电子邮箱发送一封确认邮件;
  3. 向用户的站内消息中心发送一条确认信息;

  为了实现这些操作,我们可以利用Spring的事件驱动模型。具体来说,当用户注册成功后,我们可以发布一个“用户注册成功”的事件。这个事件将包含新注册用户的信息。

  然后,我们可以创建多个监听器来监听这个“用户注册成功”的事件。这些监听器分别对应于上述的三个操作。当监听器监听到“用户注册成功”的事件后,它们将根据事件中的用户信息,执行各自的操作。

  这里为了对比,会把两种监听器的创建方式一起使用,实际开发中只需要使用某一种方式即可。

全部代码如下:

首先,让我们定义事件:

package com.example.demo.event;import org.springframework.context.ApplicationEvent;public class UserRegistrationEvent extends ApplicationEvent {private String username;public UserRegistrationEvent(Object source, String username) {super(source);this.username = username;}public String getUsername() {return username;}
}

接下来,让我们定义一个接口式监听器来发送短信通知:

package com.example.demo.listener;import com.example.demo.event.UserRegistrationEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component;@Component
public class SmsNotificationListener implements ApplicationListener<UserRegistrationEvent> {@Overridepublic void onApplicationEvent(UserRegistrationEvent event) {System.out.println("发送短信通知,恭喜用户 " + event.getUsername() + " 注册成功!");}
}

我们也可以定义一个注解式监听器来发送邮件通知:

package com.example.demo.listener;import com.example.demo.event.UserRegistrationEvent;
import org.springframework.context.event.EventListener;
import org.springframework.stereotype.Component;@Component
public class EmailNotificationListener {@EventListenerpublic void handleUserRegistrationEvent(UserRegistrationEvent event) {System.out.println("发送邮件通知,恭喜用户 " + event.getUsername() + " 注册成功!");}
}

以及一个注解式监听器来发送站内信通知:

package com.example.demo.listener;import com.example.demo.event.UserRegistrationEvent;
import org.springframework.context.event.EventListener;
import org.springframework.stereotype.Component;@Component
public class InternalMessageNotificationListener {@EventListenerpublic void handleUserRegistrationEvent(UserRegistrationEvent event) {System.out.println("发送站内信通知,恭喜用户 " + event.getUsername() + " 注册成功!");}
}

最后,我们需要一个发布事件的方法,在用户注册成功后调用。我们可以在注册服务中添加这个方法:

package com.example.demo.service;import com.example.demo.event.UserRegistrationEvent;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Service;@Service
public class UserRegistrationService {@Autowiredprivate ApplicationContext applicationContext;public void registerUser(String username) {// 用户注册逻辑......// 用户注册成功,发布事件UserRegistrationEvent event = new UserRegistrationEvent(this, username);applicationContext.publishEvent(event);}
}

以上就是使用两种不同监听器的示例。如果你运行这个代码,你会发现,注解式监听器(邮件通知和站内信通知)的触发时机是在接口式监听器(短信通知)之前。

如果不使用SpringBoot,我们可以使用Spring的传统应用上下文初始化和启动应用

主程序如下:

package com.example.demo;import com.example.demo.service.UserRegistrationService;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;public class DemoApplication {public static void main(String[] args) {AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext("com.example.demo");UserRegistrationService userRegistrationService = context.getBean(UserRegistrationService.class);userRegistrationService.registerUser("testUser");context.close();}
}

从应用上下文中获取UserRegistrationServiceBean,调用registerUser方法触发事件。

运行结果:

在这里插入图片描述

从这里也可以得出一个结论:注解式监听器的触发时机比接口式监听器早

如果使用SpringBoot框架的主程序:

package com.example.demo;import com.example.demo.service.UserRegistrationService;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;@SpringBootApplication
public class DemoApplication {public static void main(String[] args) {SpringApplication.run(DemoApplication.class, args);}@Beanpublic CommandLineRunner commandLineRunner(UserRegistrationService userRegistrationService) {return args -> {userRegistrationService.registerUser("testUser");};}
}

运行结果:

在这里插入图片描述

  在这个示例中,我们创建了一个SpringBoot应用。通过注入UserRegistrationService并调用其registerUser方法,我们可以触发用户注册事件。在实际的应用中可能会在一个控制器或其他服务中调用这个服务。

  前一篇生命周期的顺序中,我们提到了初始化Bean的时候属性赋值、@PostConstruct注解、实现InitializingBean接口后的afterPropertiesSet方法和init-method指定的方法。那这里注解式监听器的顺序和这些生命周期的顺序又有什么关系呢?

对于监听器:

  • 对于使用@EventListener注解的监听器:它的触发是在ApplicationContext刷新完成之后,此时所有的Bean定义都已经加载,且完成了自动装配,也就是说,已经完成了构造器的调用和setter方法的调用,但是还未执行初始化回调(如@PostConstructInitializingBean接口的afterPropertiesSet方法或指定的init-method

  • 对于实现了ApplicationListener接口的监听器:它本身作为一个Bean,会经历常规的Bean生命周期阶段,包括构造器的调用、setter方法的调用以及初始化回调。然后在所有单例Bean的初始化完成后,也就是在ContextRefreshedEvent事件发出后,这些监听器才会被触发。

  所以总的来说,使用@EventListener的监听器会比Bean的初始化方法更早得到执行,而实现ApplicationListener接口的监听器在所有单例Bean初始化完毕后才会被触发。

4.2 @Order注解调整监听器的触发顺序

  刚刚的例子中,因为发送短信的监听是接口式的,而注解式监听器的触发时机比接口式监听器早,所以一直在会后才触发。这里我们利用@Order注解来强制改变一下触发顺序。

  @Order注解可以用在类或者方法上,它接受一个整数值作为参数,这个参数代表了所注解的类或者方法的“优先级”。数值越小,优先级越高,越早被调用。@Order的数值可以为负数,在int范围之内都可以。

  假设我们希望短信通知的优先级最高,其次是站内信通知,最后才是邮件通知。那么我们可以如下使用@Order注解

那么,我们修改一下监听器的顺序

package com.example.demo.listener;import com.example.demo.event.UserRegistrationEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;@Component
@Order(1)
public class SmsNotificationListener implements ApplicationListener<UserRegistrationEvent> {@Overridepublic void onApplicationEvent(UserRegistrationEvent event) {System.out.println("发送短信通知,恭喜用户 " + event.getUsername() + " 注册成功!");}
}
package com.example.demo.listener;import com.example.demo.event.UserRegistrationEvent;
import org.springframework.context.event.EventListener;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;@Component
public class InternalMessageNotificationListener {@EventListener@Order(2)public void handleUserRegistrationEvent(UserRegistrationEvent event) {System.out.println("发送站内信通知,恭喜用户 " + event.getUsername() + " 注册成功!");}
}
package com.example.demo.listener;import com.example.demo.event.UserRegistrationEvent;
import org.springframework.context.event.EventListener;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;@Component
public class EmailNotificationListener {@EventListener@Order(3)public void handleUserRegistrationEvent(UserRegistrationEvent event) {System.out.println("发送邮件通知,恭喜用户 " + event.getUsername() + " 注册成功!");}
}

  可能是因为版本原因,经过我的测试,如果是注解式创建的监听器,@Order写在类上面会让所有的监听器的顺序控制失效。所以,接口式监听器如果要加@Order就放在类上,注解式监听器的@Order就放在方法上。

运行结果:

在这里插入图片描述

  1. 对于实现ApplicationListener接口的监听器(即接口式监听器),如果不指定@Order,它的执行顺序通常在所有指定了@Order的监听器之后。这是因为Spring默认给未指定@Order的监听器赋予了LOWEST_PRECEDENCE的优先级。

  2. 对于使用@EventListener注解的方法(即注解式监听器),如果不显式指定@Order,那么它的执行顺序就默认指定为@Order(0)

  注意:我们应该减少对事件处理顺序的依赖,以便更好地解耦我们的代码。虽然 @Order 可以指定监听器的执行顺序,但它不能改变事件发布的异步性质。@Order注解只能保证监听器的调用顺序,事件监听器的调用可能会在多个线程中并发执行,这样就无法保证顺序,而且在分布式应用也不适用,无法在多个应用上下文环境保证顺序。



欢迎一键三连~

有问题请留言,大家一起探讨学习

----------------------Talk is cheap, show me the code-----------------------

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/885.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

MyBatis何时使用一级缓存,何时使用二级缓存?

Mybatis设计2级缓存来提升数据检索效率&#xff0c;避免每次都查询数据库。 一、一级缓存 一级缓存 Mybatis 的一级缓存是指 SQLSession&#xff0c;一级缓存的作用域是 SQlSession , Mabits 默认开启一级缓存。 在同一个SqlSession中&#xff0c;执行相同的SQL查询时&#x…

Open ai 开发指南:gpt接口的第一个问答机器人demo

目录 内容 Python代码 C 代码 workspace 文件 BUILD文件 Java 代码 maven文件 执行效果 &#xff08;PS&#xff1a;CSDN上相关的内容无法发布&#xff0c;有需要的朋友私信我直接全套发送给你&#xff09; 内容 基于openai接口实现循环gpt问答&#xff0c;并使用一个…

Unity VR开发教程 OpenXR+XR Interaction Toolkit(八)手指触控 Poke Interaction

文章目录 &#x1f4d5;教程说明&#x1f4d5;XR Poke Interactor&#x1f4d5;与 UI 进行触控交互⭐添加 Tracked Device Graphic Raycaster 和 XR UI Input Module 让 UI 可被交互 &#x1f4d5;与物体进行交互⭐XR Simple Interactable⭐XR Poke Filter 往期回顾&#xff1a…

微信小程序web-view嵌入uni-app H5页面,通过H5页面跳转其他小程序如何操作?

1、H5页面代码 wx.miniProgram.reLaunch({ url: /pages/index/index?appId${您的微信小程序appId} });//触发小程序刷新页面获取appId 微信小程序appId查看方法&#xff1a; 1&#xff09;有后台登录权限的情况下&#xff1a;登录微信公众平台后&#xff0c; 微信公众平台微信…

Diffusion扩散模型学习2——Stable Diffusion结构解析-以文本生成图像为例

Diffusion扩散模型学习2——Stable Diffusion结构解析 学习前言源码下载地址网络构建一、什么是Stable Diffusion&#xff08;SD&#xff09;二、Stable Diffusion的组成三、生成流程1、文本编码2、采样流程a、生成初始噪声b、对噪声进行N次采样c、单次采样解析I、预测噪声II、…

nuxt 设置i18n后多语言文件不会动态更新

nuxt 设置i18n后多语言文件不会动态更新 昨天遇到的一个问题&#xff0c;然后研究了一整天&#xff0c;今天才得到解决 nuxt 设置i18n多语言时多语言文件不会动态更新 我的原始代码如下&#xff1a; {modules: [nuxtjs/i18n,],i18n: {locales: [{code: en,iso: en-US,name:…

【GitLab私有仓库】在Linux上用Gitlab搭建自己的私有库并配置cpolar内网穿透

文章目录 前言1. 下载Gitlab2. 安装Gitlab3. 启动Gitlab4. 安装cpolar5. 创建隧道配置访问地址6. 固定GitLab访问地址6.1 保留二级子域名6.2 配置二级子域名 7. 测试访问二级子域名 转载自远控源码文章&#xff1a;Linux搭建GitLab私有仓库&#xff0c;并内网穿透实现公网访问 …

go mod tidy 提示错误 go mod tidy -go=1.16 go mod tidy -go=1.17

错误概览 执行 go mod tidy 时&#xff0c;提示如下错误 > go mod tidy github.com/myrepo/myproj importsgo.k6.io/k6 importsgo.k6.io/k6/cmd importsgithub.com/fatih/color loaded from github.com/fatih/colorv1.12.0,but go 1.16 would select v1.13.0To upgrade to t…

人工智能(pytorch)搭建模型11-pytorch搭建DCGAN模型,一种生成对抗网络GAN的变体实际应用

大家好&#xff0c;我是微学AI&#xff0c;今天给大家介绍一下人工智能(pytorch)搭建模型11-pytorch搭建DCGAN模型&#xff0c;一种生成对抗网络GAN的变体实际应用&#xff0c;本文将具体介绍DCGAN模型的原理&#xff0c;并使用PyTorch搭建一个简单的DCGAN模型。我们将提供模型…

荔枝集团战队斩获 2023 Amazon DeepRacer自动驾驶赛车企业总决赛冠军

6月27日&#xff0c;2023 Amazon DeepRacer自动驾驶赛车企业总决赛在上海决出了最终结果&#xff0c;荔枝集团“状元红”战队与Cisco、德勤管理咨询、北京辛诺创新、神州泰岳、敦煌网等12支队伍的竞逐中&#xff0c;在两轮比赛中成绩遥遥领先&#xff0c;最终斩获桂冠。而今年年…

人工智能数据集处理——数据清理2

目录 异常值的检测与处理 一、异常值的检测 1、使用3σ准则检测异常值 定义一个基于3σ准则检测的函数&#xff0c;使用该函数检测文件中的数据&#xff0c;并返回异常值 2、使用箱形图检测异常值 根据data.xlsx文件中的数据&#xff0c;使用boxplot()方法绘制一个箱型图 …

数字孪生百科之海康威视安防系统

智能安防是指利用先进的技术手段和系统&#xff0c;以提升安全防护能力和监控效果的安全领域。数字化则是指将信息以数字形式进行处理和存储的过程。智能安防与数字化密切相关&#xff0c;通过数字化的手段和技术&#xff0c;可以实现对安全领域的全面监控、数据分析和智能决策…