场景:监听应用从创建到销毁的整个生命周期。这样可以在应用启动之前,或启动之后做一些操作
org.springframework.boot.SpringApplicationRunListener=\
org.springframework.boot.context.event.EventPublishingRunListener
用于事件发布。在生命周期的各个重要环节,都会将事件进行广播,如果我们对那个事件比较关系,可以继续监听
(SpringApplication application, String[] args)
org.springframework.boot.SpringApplicationRunListener=自己的Listener全类名
自定义示例如下:
MyAppListener.java
package com.hh.springboot3test.listener;
import org.springframework.boot.ConfigurableBootstrapContext;
import org.springframework.boot.SpringApplicationRunListener;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.core.env.ConfigurableEnvironment;
import java.time.Duration;
public class MyAppListener implements SpringApplicationRunListener {
@Override
public void starting(ConfigurableBootstrapContext bootstrapContext) {
System.out.println("=====starting=====正在启动======");
}
@Override
public void environmentPrepared(ConfigurableBootstrapContext bootstrapContext, ConfigurableEnvironment environment) {
System.out.println("=====environmentPrepared=====环境准备完成======");
}
@Override
public void contextPrepared(ConfigurableApplicationContext context) {
System.out.println("=====contextPrepared=====ioc容器准备完成======");
}
@Override
public void contextLoaded(ConfigurableApplicationContext context) {
System.out.println("=====contextLoaded=====ioc容器加载完成======");
}
@Override
public void started(ConfigurableApplicationContext context, Duration timeTaken) {
System.out.println("=====started=====启动完成======");
}
@Override
public void ready(ConfigurableApplicationContext context, Duration timeTaken) {
System.out.println("=====ready=====准备就绪======");
}
@Override
public void failed(ConfigurableApplicationContext context, Throwable exception) {
System.out.println("=====failed=====应用启动失败======");
}
}
src\main\resources\META-INF\spring.factories
org.springframework.boot.SpringApplicationRunListener=com.hh.springboot3test.listener.MyAppListener
启动springBoot应用,打印如下:
E:\install_software\java\zulu17.42.19-ca-jdk17.0.7-win_x64\bin\java.exe -XX:TieredStopAtLevel=1 -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true -javaagent:E:\install_software\IDEA\lib\idea_rt.jar=58974:E:\install_software\IDEA\bin -Dfile.encoding=UTF-8 -classpath D:\20230205备份\正使用文件\springBoot3Test\target\classes;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\boot\spring-boot-starter-web\3.1.1\spring-boot-starter-web-3.1.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\boot\spring-boot-starter-json\3.1.1\spring-boot-starter-json-3.1.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\com\fasterxml\jackson\datatype\jackson-datatype-jdk8\2.15.2\jackson-datatype-jdk8-2.15.2.jar;E:\install_software\maven\apache-maven-3.8.6\repository\com\fasterxml\jackson\datatype\jackson-datatype-jsr310\2.15.2\jackson-datatype-jsr310-2.15.2.jar;E:\install_software\maven\apache-maven-3.8.6\repository\com\fasterxml\jackson\module\jackson-module-parameter-names\2.15.2\jackson-module-parameter-names-2.15.2.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\boot\spring-boot-starter-tomcat\3.1.1\spring-boot-starter-tomcat-3.1.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\apache\tomcat\embed\tomcat-embed-core\10.1.10\tomcat-embed-core-10.1.10.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\apache\tomcat\embed\tomcat-embed-el\10.1.10\tomcat-embed-el-10.1.10.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\apache\tomcat\embed\tomcat-embed-websocket\10.1.10\tomcat-embed-websocket-10.1.10.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\spring-web\6.0.10\spring-web-6.0.10.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\spring-beans\6.0.10\spring-beans-6.0.10.jar;E:\install_software\maven\apache-maven-3.8.6\repository\io\micrometer\micrometer-observation\1.11.1\micrometer-observation-1.11.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\io\micrometer\micrometer-commons\1.11.1\micrometer-commons-1.11.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\spring-webmvc\6.0.10\spring-webmvc-6.0.10.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\spring-aop\6.0.10\spring-aop-6.0.10.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\spring-context\6.0.10\spring-context-6.0.10.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\spring-expression\6.0.10\spring-expression-6.0.10.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\projectlombok\lombok\1.18.28\lombok-1.18.28.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\slf4j\slf4j-api\2.0.7\slf4j-api-2.0.7.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\spring-core\6.0.10\spring-core-6.0.10.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\spring-jcl\6.0.10\spring-jcl-6.0.10.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\boot\spring-boot-starter\3.1.1\spring-boot-starter-3.1.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\boot\spring-boot\3.1.1\spring-boot-3.1.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\boot\spring-boot-autoconfigure\3.1.1\spring-boot-autoconfigure-3.1.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\jakarta\annotation\jakarta.annotation-api\2.1.1\jakarta.annotation-api-2.1.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\yaml\snakeyaml\1.33\snakeyaml-1.33.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\boot\spring-boot-starter-log4j2\3.1.1\spring-boot-starter-log4j2-3.1.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\apache\logging\log4j\log4j-slf4j2-impl\2.20.0\log4j-slf4j2-impl-2.20.0.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\apache\logging\log4j\log4j-api\2.20.0\log4j-api-2.20.0.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\apache\logging\log4j\log4j-core\2.20.0\log4j-core-2.20.0.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\apache\logging\log4j\log4j-jul\2.20.0\log4j-jul-2.20.0.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\webjars\jquery\3.6.4\jquery-3.6.4.jar;E:\install_software\maven\apache-maven-3.8.6\repository\com\fasterxml\jackson\dataformat\jackson-dataformat-xml\2.15.2\jackson-dataformat-xml-2.15.2.jar;E:\install_software\maven\apache-maven-3.8.6\repository\com\fasterxml\jackson\core\jackson-core\2.15.2\jackson-core-2.15.2.jar;E:\install_software\maven\apache-maven-3.8.6\repository\com\fasterxml\jackson\core\jackson-annotations\2.15.2\jackson-annotations-2.15.2.jar;E:\install_software\maven\apache-maven-3.8.6\repository\com\fasterxml\jackson\core\jackson-databind\2.15.2\jackson-databind-2.15.2.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\codehaus\woodstox\stax2-api\4.2.1\stax2-api-4.2.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\com\fasterxml\woodstox\woodstox-core\6.5.1\woodstox-core-6.5.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\springframework\boot\spring-boot-starter-thymeleaf\3.1.1\spring-boot-starter-thymeleaf-3.1.1.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\thymeleaf\thymeleaf-spring6\3.1.1.RELEASE\thymeleaf-spring6-3.1.1.RELEASE.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\thymeleaf\thymeleaf\3.1.1.RELEASE\thymeleaf-3.1.1.RELEASE.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\attoparser\attoparser\2.0.6.RELEASE\attoparser-2.0.6.RELEASE.jar;E:\install_software\maven\apache-maven-3.8.6\repository\org\unbescape\unbescape\1.1.6.RELEASE\unbescape-1.1.6.RELEASE.jar com.hh.springboot3test.SpringBoot3TestApplication
=====starting=====正在启动======
=====environmentPrepared=====环境准备完成======
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v3.1.1)
=====contextPrepared=====ioc容器准备完成======
2023-07-24T18:19:05.215+08:00 INFO 22832 --- [ main] c.h.s.SpringBoot3TestApplication : Starting SpringBoot3TestApplication using Java 17.0.7 with PID 22832 (D:\20230205备份\正使用文件\springBoot3Test\target\classes started by hehuan48495 in D:\20230205备份\正使用文件\springBoot3Test)
2023-07-24T18:19:05.220+08:00 INFO 22832 --- [ main] c.h.s.SpringBoot3TestApplication : No active profile set, falling back to 1 default profile: "default"
=====contextLoaded=====ioc容器加载完成======
2023-07-24T18:19:05.805+08:00 INFO 22832 --- [ main] o.s.b.w.e.t.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2023-07-24T18:19:05.813+08:00 INFO 22832 --- [ main] o.a.c.c.StandardService : Starting service [Tomcat]
2023-07-24T18:19:05.813+08:00 INFO 22832 --- [ main] o.a.c.c.StandardEngine : Starting Servlet engine: [Apache Tomcat/10.1.10]
2023-07-24T18:19:05.876+08:00 INFO 22832 --- [ main] o.a.c.c.C.[.[.[/] : Initializing Spring embedded WebApplicationContext
2023-07-24T18:19:05.876+08:00 INFO 22832 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 631 ms
2023-07-24T18:19:06.141+08:00 INFO 22832 --- [ main] o.s.b.w.e.t.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2023-07-24T18:19:06.147+08:00 INFO 22832 --- [ main] c.h.s.SpringBoot3TestApplication : Started SpringBoot3TestApplication in 1.243 seconds (process running for 1.723)
=====started=====启动完成======
=====ready=====准备就绪======
源码分析如下:
public class SpringApplication {
......省略部分......
public ConfigurableApplicationContext run(String... args) {
long startTime = System.nanoTime();
// =====================================listeners.starting==============================
// 1. 创建bootstrapContext
DefaultBootstrapContext bootstrapContext = createBootstrapContext();
ConfigurableApplicationContext context = null;
configureHeadlessProperty();
// 2. 获取run listeners。从spring.factories加载SpringApplicationRunListener类的所有监听器
SpringApplicationRunListeners listeners = getRunListeners(args);
// 3. 遍历调用所有listener的starting方法
listeners.starting(bootstrapContext, this.mainApplicationClass);
try {
ApplicationArguments applicationArguments = new DefaultApplicationArguments(args);
// =====================================listeners.environmentPrepared==============================
// 准备环境。先将应用的各种参数绑定到环境变量,再在方法内部会【执行一次】listeners.environmentPrepared方法
ConfigurableEnvironment environment = prepareEnvironment(listeners, bootstrapContext, applicationArguments);
Banner printedBanner = printBanner(environment);
// =====================================listeners.contextPrepared==============================
// 1. 创建IOC容器
context = createApplicationContext();
context.setApplicationStartup(this.applicationStartup);
// 2. 准备IOC容器。准备好后会【执行一次】listeners.contextPrepared,然后会执行bootstrapContext.close关闭引导上下文
// =====================================listeners.contextLoaded==============================
// 在prepareContext执行完前面的步骤后,先将核心的组件添加到IOC容器,然后再执行listeners.contextLoaded
// 此时sources(主配置类)已加载,但是配置类中的Bean还未创建
prepareContext(bootstrapContext, context, environment, listeners, applicationArguments, printedBanner);
// =====================================listeners.started==============================
// 1. 进行IOC容器经典的刷新十二大步。所有Bean进行创造
refreshContext(context);
afterRefresh(context, applicationArguments);
Duration timeTakenToStartup = Duration.ofNanos(System.nanoTime() - startTime);
if (this.logStartupInfo) {
new StartupInfoLogger(this.mainApplicationClass).logStarted(getApplicationLog(), timeTakenToStartup);
}
// 2. 【执行一次】listeners.started
listeners.started(context, timeTakenToStartup);
// =====================================listeners.ready==============================
// 1. 调用runner调用
callRunners(context, applicationArguments);
}
catch (Throwable ex) {
if (ex instanceof AbandonedRunException) {
throw ex;
}
// =====================================listeners.failed==============================
// 如果失败,在方法内部【第一次】调用listeners.failed
handleRunFailure(context, ex, listeners);
throw new IllegalStateException(ex);
}
try {
if (context.isRunning()) {
Duration timeTakenToReady = Duration.ofNanos(System.nanoTime() - startTime);
// 2. 在run方法完毕前,执行listeners.ready
listeners.ready(context, timeTakenToReady);
}
}
catch (Throwable ex) {
if (ex instanceof AbandonedRunException) {
throw ex;
}
// =====================================listeners.failed==============================
// 如果失败,在方法内部【第二次】调用listeners.failed
handleRunFailure(context, ex, null);
throw new IllegalStateException(ex);
}
return context;
}
......省略部分......
}
SpringApplication.addBootstrapRegistryInitializer();
添加自定义的类 public SpringApplication(ResourceLoader resourceLoader, Class<?>... primarySources) {
this.resourceLoader = resourceLoader;
Assert.notNull(primarySources, "PrimarySources must not be null");
this.primarySources = new LinkedHashSet<>(Arrays.asList(primarySources));
this.webApplicationType = WebApplicationType.deduceFromClasspath();
// 从spring.factories加载BootstrapRegistryInitializer
this.bootstrapRegistryInitializers = new ArrayList<>(
getSpringFactoriesInstances(BootstrapRegistryInitializer.class));
// 从spring.factories加载ApplicationContextInitializer
setInitializers((Collection) getSpringFactoriesInstances(ApplicationContextInitializer.class));
// 从spring.factories加载ApplicationListener
setListeners((Collection) getSpringFactoriesInstances(ApplicationListener.class));
this.mainApplicationClass = deduceMainApplicationClass();
}
SpringApplication.addInitializers();
添加自定义的类SpringApplication.addListeners(…)
或SpringApplicationBuilder.listeners(…)
添加自定义的类MyListener.java
package com.hh.springboot3test.listener;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.ApplicationListener;
public class MyListener implements ApplicationListener<ApplicationEvent> {
@Override
public void onApplicationEvent(ApplicationEvent event) {
System.out.println("=====事件====到达====" + event + "=====");
}
}
src\main\resources\META-INF\spring.factories添加
org.springframework.context.ApplicationListener=com.hh.springboot3test.listener.MyListener
RunnerConfig.java
package com.hh.springboot3test.config;
import org.springframework.boot.ApplicationRunner;
import org.springframework.boot.CommandLineRunner;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class RunnerConfig {
@Bean
public ApplicationRunner applicationRunner(){
return args -> {
System.out.println("===ApplicationRunner=====运行了=====");
};
}
@Bean
public CommandLineRunner commandLineRunner(){
return args -> {
System.out.println("===CommandLineRunner=====运行了=====");
};
}
}
启动springboot应用,打印如下:
=====事件====到达====org.springframework.boot.context.event.ApplicationStartingEvent[source=org.springframework.boot.SpringApplication@1787f2a0]=====
=====starting=====正在启动======
=====事件====到达====org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent[source=org.springframework.boot.SpringApplication@1787f2a0]=====
=====environmentPrepared=====环境准备完成======
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v3.1.1)
=====事件====到达====org.springframework.boot.context.event.ApplicationContextInitializedEvent[source=org.springframework.boot.SpringApplication@1787f2a0]=====
=====contextPrepared=====ioc容器准备完成======
2023-07-25T10:41:41.064+08:00 INFO 13056 --- [ main] c.h.s.SpringBoot3TestApplication : Starting SpringBoot3TestApplication using Java 17.0.7 with PID 13056 (D:\20230205备份\正使用文件\springBoot3Test\target\classes started by hehuan48495 in D:\20230205备份\正使用文件\springBoot3Test)
2023-07-25T10:41:41.069+08:00 INFO 13056 --- [ main] c.h.s.SpringBoot3TestApplication : No active profile set, falling back to 1 default profile: "default"
=====事件====到达====org.springframework.boot.context.event.ApplicationPreparedEvent[source=org.springframework.boot.SpringApplication@1787f2a0]=====
=====contextLoaded=====ioc容器加载完成======
2023-07-25T10:41:41.622+08:00 INFO 13056 --- [ main] o.s.b.w.e.t.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2023-07-25T10:41:41.631+08:00 INFO 13056 --- [ main] o.a.c.c.StandardService : Starting service [Tomcat]
2023-07-25T10:41:41.631+08:00 INFO 13056 --- [ main] o.a.c.c.StandardEngine : Starting Servlet engine: [Apache Tomcat/10.1.10]
2023-07-25T10:41:41.691+08:00 INFO 13056 --- [ main] o.a.c.c.C.[.[.[/] : Initializing Spring embedded WebApplicationContext
2023-07-25T10:41:41.691+08:00 INFO 13056 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 597 ms
2023-07-25T10:41:41.936+08:00 INFO 13056 --- [ main] o.s.b.w.e.t.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
=====事件====到达====org.springframework.boot.web.servlet.context.ServletWebServerInitializedEvent[source=org.springframework.boot.web.embedded.tomcat.TomcatWebServer@661d6bb6]=====
=====事件====到达====org.springframework.context.event.ContextRefreshedEvent[source=org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@43ed0ff3, started on Tue Jul 25 10:41:41 CST 2023]=====
2023-07-25T10:41:41.942+08:00 INFO 13056 --- [ main] c.h.s.SpringBoot3TestApplication : Started SpringBoot3TestApplication in 1.168 seconds (process running for 1.631)
=====事件====到达====org.springframework.boot.context.event.ApplicationStartedEvent[source=org.springframework.boot.SpringApplication@1787f2a0]=====
=====事件====到达====org.springframework.boot.availability.AvailabilityChangeEvent[source=org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@43ed0ff3, started on Tue Jul 25 10:41:41 CST 2023]=====
=====started=====启动完成======
===ApplicationRunner=====运行了=====
===CommandLineRunner=====运行了=====
=====事件====到达====org.springframework.boot.context.event.ApplicationReadyEvent[source=org.springframework.boot.SpringApplication@1787f2a0]=====
=====事件====到达====org.springframework.boot.availability.AvailabilityChangeEvent[source=org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@43ed0ff3, started on Tue Jul 25 10:41:41 CST 2023]=====
=====ready=====准备就绪======
整体的流程如下图所示:
9大事件触发顺序总结:
应用运行中的事件发布和订阅,可以实现无数种。形成事件驱动模型
核心原理如下。符合设计模式的开闭原则:对新增开放,对修改关闭
实战如下:
UserEntity.java:定义用户的信息
package com.hh.springboot3test.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@AllArgsConstructor
@NoArgsConstructor
@Data
public class UserEntity {
private String uname;
private String passwd;
}
LoginSuccessEvent.java:实现ApplicationEvent抽象类,定义一个事件类型
package com.hh.springboot3test.event;
import com.hh.springboot3test.entity.UserEntity;
import org.springframework.context.ApplicationEvent;
public class LoginSuccessEvent extends ApplicationEvent {
/**
* @param source: 登录成功的人
*/
public LoginSuccessEvent(UserEntity source) {
super(source);
}
}
EventPublisher.java:实现了ApplicationEventPublisherAware,会自动完成两件事情。从而具有事件发布功能
package com.hh.springboot3test.event;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.ApplicationEventPublisherAware;
import org.springframework.stereotype.Service;
@Service
public class EventPublisher implements ApplicationEventPublisherAware {
ApplicationEventPublisher applicationEventPublisher;
@Override
public void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher) {
this.applicationEventPublisher = applicationEventPublisher;
}
/**
* 将事件广播出去。所有监听这个事件的监听器都可以收到
*/
public void sendEvent(ApplicationEvent event) {
applicationEventPublisher.publishEvent(event);
}
}
LoginController.java:模拟用户登录,创建事件信息,再发送事件
package com.hh.springboot3test.controller;
import com.hh.springboot3test.entity.UserEntity;
import com.hh.springboot3test.event.EventPublisher;
import com.hh.springboot3test.event.LoginSuccessEvent;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class LoginController {
@Autowired
EventPublisher eventPublisher;
@GetMapping("/login")
public String login(@RequestParam("uname") String uname,
@RequestParam("passwd") String passwd) {
// 业务处理登录
System.out.println("=====业务处理登录完成======");
// 如果是分布式服务,可以发布分布式事件
LoginSuccessEvent event = new LoginSuccessEvent(new UserEntity(uname, passwd));
eventPublisher.sendEvent(event);
return uname + "登录成功";
}
}
AccountService.java:订阅事件方式一:实现ApplicationListener接口,泛型为监听的事件类型。onApplicationEvent方法监听到新事件时自动调用
@Order注解用于方法和类上都可以,数字越小优先级越高。默认按类称排序
package com.hh.springboot3test.service;
import com.hh.springboot3test.entity.UserEntity;
import com.hh.springboot3test.event.LoginSuccessEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Service;
@Order(1)
@Service
public class AccountService implements ApplicationListener<LoginSuccessEvent> {
// 模拟积分功能
public void addAccountScore(String uname) {
System.out.println(uname + "加了1分");
}
@Override
public void onApplicationEvent(LoginSuccessEvent event) {
System.out.println("=====AccountService======收到事件=====");
UserEntity source = (UserEntity) event.getSource();
addAccountScore(source.getUname());
}
}
CouponService.java:订阅事件方式二:在自定义方法上使用@EventListener注解,参数为监听的事件类型。监听到新事件时方法自动调用
package com.hh.springboot3test.service;
import com.hh.springboot3test.entity.UserEntity;
import com.hh.springboot3test.event.LoginSuccessEvent;
import org.springframework.context.event.EventListener;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Service;
@Service
public class CouponService {
public void sendCoupon(String uname) {
System.out.println(uname + "随机得到了一张优惠券");
}
@Async // 需要在主程序上使用@EnableAsync开启异步功能
@Order(2)
@EventListener
public void myEventMethod(LoginSuccessEvent event) {
System.out.println("=====CouponService======收到事件=====");
UserEntity source = (UserEntity) event.getSource();
sendCoupon(source.getUname());
}
}
访问http://localhost:8080/login?uname=jim&passwd=abc。页面显示如下:
控制台打印如下:
=====业务处理登录完成======
=====事件====到达====com.hh.springboot3test.event.LoginSuccessEvent[source=UserEntity(uname=jim, passwd=abc)]=====
=====AccountService======收到事件=====
jim加了1分
=====CouponService======收到事件=====
jim随机得到了一张优惠券
=====事件====到达====ServletRequestHandledEvent: url=[/login]; client=[0:0:0:0:0:0:0:1]; method=[GET]; servlet=[dispatcherServlet]; session=[null]; user=[null]; time=[32ms]; status=[OK]=====
可以看到,LoginController能发布事件,AccountService和CouponService能监听到事件
我们前面实现的MyListener,也能监听到LoginController发布的事件。同时能监听到ServletRequestHandledEvent
自动配置类、配置类、Bean加载的时机,可以看下图