欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SpringBoot-事件模型

程序员文章站 2022-06-16 09:14:51
...
SpringBoot2.0版本中所有的事件按执行的先后顺序如下
ApplicationStartingEvent
ApplicationEnvironmentPreparedEvent
ApplicationPreparedEvent
ApplicationStartedEvent <= 2.0新增的事件
ApplicationReadyEvent

ApplicationFailedEvent

使用:

1、代码:以ApplicationEnvironmentPreparedEvent为例子,其他的事件写法类似。只要替换ApplicationListener里头的泛型类就好了。

@Slf4j
public class ApplicationEnvironmentPreparedEventListener implements ApplicationListener<ApplicationEnvironmentPreparedEvent> {

    @Override
    public void onApplicationEvent(ApplicationEnvironmentPreparedEvent event) {
        log.info("......ApplicationEnvironmentPreparedEvent......");
    }

}

2、在/src/main/resources/目录下新建:META-INF/spring.factories配置文件,通过配置org.springframework.context.ApplicationListener来加载上面我们编写的监听器。

org.springframework.context.ApplicationListener=com.example.demo121.ApplicationEnvironmentPreparedEventListener

以上,在启动springboot的时候,就会自动执行上述的程序。

注意:ApplicationStartingEvent你会发现不到控制台上打印出日志的,因为他是比控制台打印日志功能加载之前就加载了。ApplicationEnvironmentPreparedEvent是在日志里头最早出现的。

着重讲解这两个:
(1)ApplicationStartingEvent:

An ApplicationStartingEvent is sent at the start of a run, but before any processing except the registration of listeners and initializers.

翻译:一个applicationstartingevent是在运行开始前发出的,但除了听众和初始化登记任何处理。(百度翻译)


 (2)ApplicationEnvironmentPreparedEvent:

An ApplicationEnvironmentPreparedEvent is sent when the Environment to be used in the context is known, but before the context is created.

翻译:ApplicationEnvironmentPreparedEvent是在上下文中被引用时候创建的,但是在上下文创建之前。

ApplicationStartedEvent和ApplicationReadyEvent的加载也是有先后顺序的,理解这些先后顺序,可以帮我们做好多活:这两个都是应用加载完成之后的事件,它们是否有什么区别呢?从官方文档中我们可以知道他们两中间还有一个过程就是command-line runners被调用的内容。

command-line runners:

我们会有在项目服务启动的时候就去加载一些数据或做一些事情这样的需求。

为了解决这样的问题,Spring Boot 为我们提供了一个方法,通过实现接口 CommandLineRunner 来实现。Spring Boot应用程序在启动后,会遍历CommandLineRunner接口的实例并运行它们的run方法。也可以利用@Order注解(或者实现Order接口)来规定所有CommandLineRunner实例的运行顺序。@Order 注解的执行优先级是按value值从小到大顺序

如下:

package com.example.demo121;

import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.CommandLineRunner;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;

@Slf4j
@Component
@Order(2)
public class DataLoader1 implements CommandLineRunner {

		@Override
		public void run(String... strings) throws Exception {
			log.info("data1  Loading data...");
		}
	}
package com.example.demo121;

import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.CommandLineRunner;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;

@Slf4j
@Component
@Order(1)
public class DataLoader2 implements CommandLineRunner {

		@Override
		public void run(String... strings) throws Exception {
			log.info("data2  Loading data...");
		}
	}

结果:

SpringBoot-事件模型

注意事项:

如下的设置,是不会让order生效的。

@Bean
@Order(value=2)
public DataLoader1 dataLoader1() {
   return new DataLoader1();
}
@Bean
@Order(value=1)
public DataLoader2 dataLoader2() {
   return new DataLoader2();
}








相关标签: 事件模型

上一篇: javascript事件模型

下一篇: 2020-08-22