Springboot中SpringApplicationEvent的种类

如下图:

主要包括6种:

  1. ApplicationEnvironmentPreparedListener
  2. ApplicationFailedListener
  3. ApplicationPreparedListener
  4. ApplicationReadyListener
  5. ApplicationStartingListener
  6. SpringApplicationListener

各监听器的启动顺序

如下是debug输出结果:

// 省略了部分
Connected to the target VM, address: '127.0.0.1:52000', transport: 'socket'
2017-09-28 16:53:27.273 INFO 6960 --- [ main] c.s.listeners.SpringApplicationListener : 监听器事件 【SpringApplicationEvent】
2017-09-28 16:53:27.277 INFO 6960 --- [ main] l.ApplicationEnvironmentPreparedListener : 监听器事件 【ApplicationEnvironmentPreparedEvent】 . ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.5.7.RELEASE) 2017-09-28 16:53:27.359 INFO 6960 --- [ main] c.s.ApplicationlistenerApplication : Starting ApplicationlistenerApplication on LIULIN-PC with PID 6960 (D:\workspace\SpringBootStudy\applicationlistener\target\classes started by liulin in D:\workspace\SpringBootStudy)
2017-09-28 16:53:27.359 INFO 6960 --- [ main] c.s.ApplicationlistenerApplication : No active profile set, falling back to default profiles: default
2017-09-28 16:53:27.403 INFO 6960 --- [ main] c.s.l.ApplicationPreparedListener : 监听器事件 【ApplicationPreparedEvent】
2017-09-28 16:53:27.403 INFO 6960 --- [ main] c.s.listeners.SpringApplicationListener : 监听器事件 【SpringApplicationEvent】
2017-09-28 16:53:27.406 INFO 6960 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2f465398: startup date [Thu Sep 28 16:53:27 CST 2017]; root of context hierarchy
2017-09-28 16:53:28.878 INFO 6960 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-09-28 16:53:28.887 INFO 6960 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-09-28 16:53:28.888 INFO 6960 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.20
2017-09-28 16:53:28.952 INFO 6960 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2017-09-28 16:53:28.952 INFO 6960 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1549 ms
2017-09-28 16:53:29.070 INFO 6960 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-09-28 16:53:29.074 INFO 6960 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-09-28 16:53:29.074 INFO 6960 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-09-28 16:53:29.074 INFO 6960 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-09-28 16:53:29.074 INFO 6960 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-09-28 16:53:29.105 INFO 6960 --- [ main] com.ssslinppp.service.DemoServiceA : 初始化实例:DemoServiceA
2017-09-28 16:53:29.107 INFO 6960 --- [ main] com.ssslinppp.service.DemoServiceB : 初始化实例:DemoServiceB
2017-09-28 16:53:29.327 INFO 6960 --- [ main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2f465398: startup date [Thu Sep 28 16:53:27 CST 2017]; root of context hierarchy
2017-09-28 16:53:29.382 INFO 6960 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-09-28 16:53:29.382 INFO 6960 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-09-28 16:53:29.420 INFO 6960 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-09-28 16:53:29.420 INFO 6960 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-09-28 16:53:29.451 INFO 6960 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-09-28 16:53:29.626 INFO 6960 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-09-28 16:53:29.668 INFO 6960 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-09-28 16:53:29.671 INFO 6960 --- [ main] c.s.listeners.ApplicationReadyListener : 监听器事件 【ApplicationReadyEvent】 : ApplicationReadyListener
2017-09-28 16:53:29.671 INFO 6960 --- [ main] c.s.listeners.SpringApplicationListener : 监听器事件 【SpringApplicationEvent】
2017-09-28 16:53:29.672 INFO 6960 --- [ main] c.s.ApplicationlistenerApplication : Started ApplicationlistenerApplication in 2.577 seconds (JVM running for 3.022)

从上面可以看出,顺序如下:

  1. SpringApplicationEvent
  2. ApplicationEnvironmentPreparedEvent :可以通过ConfigurableEnvironment实例对象来修改 以及 获取默认的环境信息。
  3. 初始化图标(banner)
  4. ApplicationPreparedEvent :这个时候spring容器中的bean还没有被完全的加载,如果通过ConfigurableApplicationContext获取bean会报错的
  5. SpringApplicationEvent
  6. 映射基本的servlet URL: [/][/*]
  7. 初始化Spring容器中的beans
  8. ApplicationReadyEvent :可以通过ApplicationReadyEvent获取ConfigurableApplicationContext,然后通过ConfigurableApplicationContext 获取bean的信息

各种SpringApplicationEvent的主要用途示例

【ApplicationListener】Springboot各类事件监听器的更多相关文章

  1. SpringBoot事件监听器源码分析

    本文涉及到Spring的监听器,如果不太了解请先阅读之前的Spring监听器的文章. SpringBoot事件监听器初始化 SpringBoot中默认定义了11个事件监听器对象,全部定义在META-I ...

  2. SpringBoot各类扩展点详解

    一.前言 上篇文章我们深入分析了SpringBoot的一站式启动流程.然后我们知道SpringBoot的主要功能都是依靠它内部很多的扩展点来完成的,那毋容置疑,这些扩展点是我们应该深入了解的,那么本次 ...

  3. Spring 框架中注释驱动的事件监听器详解

    事件交互已经成为很多应用程序不可或缺的一部分,Spring框架提供了一个完整的基础设施来处理瞬时事件.下面我们来看看Spring 4.2框架中基于注释驱动的事件监听器. 1.早期的方式 在早期,组件要 ...

  4. SpringBoot的事件监听

    事件监听的流程分为三步:1.自定义事件,一般是继承ApplicationEvent抽象类.2.定义事件监听器,一般是实现ApplicationListener接口.3.a.启动的时候,需要将监听器加入 ...

  5. spring 启动完成后事件监听器处理

    有时候我们在spring容器启动完成后,我们需要做一些处理动作,这个时候怎么做呢? spring提供了事件监听器的处理机制. spring提供了内置的几类的事件: ContextClosedEvent ...

  6. Spring 4.2框架中注释驱动的事件监听器详解

    事件交互已经成为很多应用程序不可或缺的一部分,spring框架提供了一个完整的基础设施来处理瞬时事件.下面我们来看看Spring 4.2框架中基于注释驱动的事件监听器. 1.早期的方式 在早期,组件要 ...

  7. java设计模式--观察者模式和事件监听器模式

    观察者模式 观察者模式又称为订阅—发布模式,在此模式中,一个目标对象管理所有相依于它的观察者对象,并且在它本身的状态改变时主动发出通知.这通常透过呼叫各观察者所提供的方法来实现.此种模式通常被用来事件 ...

  8. springBoot的事件机制---GenericApplicationListener用法

    springBoot的事件机制---GenericApplicationListener用法 什么是ApplicationContext? 它是Spring的核心,Context我们通常解释为上下文环 ...

  9. passive 的事件监听器

    很久以前,addEventListener() 的参数约定是这样的: addEventListener(type, listener, useCapture) 后来,最后一个参数,也就是控制监听器是在 ...

随机推荐

  1. 装机人员工具 - imsoft.cnblogs

    链接:http://pan.baidu.com/s/1i3kgpAP 密码:4uzr

  2. Gym - 101806T: Touch The Sky(贪心)

    Figure: The house floats up in the sky by balloons. This picture is also used in 2018 KAIST RUN Spri ...

  3. No setter found for property 'cronExpression' in class 'org.springframework.scheduling.quartz.CronTriggerBean'

    今天想写个Spring集成Quartz的小Demo,结果报错cronExpression未定义,通过差错,原来是因为Spring 3.0.5与Quartz2.2.2不兼容,Spring3.1以下的只能 ...

  4. HDU 1754:I Hate It(线段树模板)

    I Hate It Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total ...

  5. java第一节感受

    第一节java课考试,感觉自从小学期和实习过了以后就等这个测试了,测试过了以后就是中秋节了,下周再上一节java又放国庆节了. 当时报软工的时候就早早地做好了心理准备,但是当亲身经历一遍后真的有了一种 ...

  6. python django day 2

    django-admin.py startproject zqxt_viewscd zqxt_viewspython manage.py startapp calczqxt_views/urls.py ...

  7. Myelipse中xml约束文件的导入(以spring为例)

    为了在电脑处于未联网状态下,beans.xml中书写标签具有提示功能,需要在电脑本地导入约束文件,下面上图 注意:将location后缀添加到key中beans的后面 注意:导入 context,ao ...

  8. powerdesigner基本使用

    parent sonPK主键 FK外键 n ------> 1 alter table muniubox.cpa_accounting_book add constraint FK_Refere ...

  9. Go Example--超时处理

    package main import ( "fmt" "time" ) func main() { c1 := make(chan string, 1) go ...

  10. C#获取IIS所有站点及虚拟目录和应用程序(包含名称及详细信息)

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; usin ...