SpringBoot 工作机制(二)

SpringBoot 部分核心类

介绍几个Spring Boot 中 SpringApplicationRunListener , ApplicationContextInitializer ,ApplicationListener ,CommandLineRunner 。

1). SpringApplicationRunListener

其实对于我们来说,没有什么必要自己实现一个SpringApplicationRunListener,在SpringBoot中也只是实现了一个org.springframework.boot.context.event.EventPublishingRunListener。用于在SpringBoot 启动时发布不同的应用事件类型。SpringApplication 实例初始化的时候加载了一批ApplicationListener , 但是run 方法的流程中并没有看到 。是由SpringApplicationRunListener实现类EventPublishingRunListener完成的。

​ 如果我们需要自定义一个SpringApplicationRunListener, 要注意构造方法需要两个参数,一个为org.springframework.boot.SpringApplication,另一个为String[] args 参数列表。

import org.springframework.boot.SpringApplication;
import org.springframework.boot.SpringApplicationRunListener;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.core.env.ConfigurableEnvironment;

/**
 * @author xsh
 * @date 2019/1/3
 * @since 1.0.0
 */
public class MySpringApplicationRunListener  implements SpringApplicationRunListener {

    private final SpringApplication application;

    private final String[] args;


    public MySpringApplicationRunListener(SpringApplication application, String[] args) {
        this.application = application;
        this.args = args;
    }


    @Override
    public void starting() {
        System.out.println(" MySpringApplicationRunListener   starting ...  ");
    }

    @Override
    public void environmentPrepared(ConfigurableEnvironment environment) {
        System.out.println(" MySpringApplicationRunListener   environmentPrepared ...  ");
    }

    @Override
    public void contextPrepared(ConfigurableApplicationContext context) {
        System.out.println(" MySpringApplicationRunListener   contextPrepared ...  ");
    }

    @Override
    public void contextLoaded(ConfigurableApplicationContext context) {
        System.out.println(" MySpringApplicationRunListener   contextLoaded ...  ");
    }

    @Override
    public void started(ConfigurableApplicationContext context) {
        System.out.println(" MySpringApplicationRunListener   started ...  ");
    }

    @Override
    public void running(ConfigurableApplicationContext context) {
        System.out.println(" MySpringApplicationRunListener   running ...  ");
    }

    @Override
    public void failed(ConfigurableApplicationContext context, Throwable exception) {
        System.out.println(" MySpringApplicationRunListener   failed ...  ");
    }
}

在这里插入图片描述

在这里插入图片描述

执行结果:
在这里插入图片描述
在这里插入图片描述

可以看出在SpringBoot启动时,SpringApplicationRunListener 发布了事件通知。

2). ApplicationListener

ApplicationListener 对于我们并不陌生,是Spring框架监听者模式的实现。我们可以自定义一些事件,以及Listener 。 如下 :

事件模型:

/**
 * 〈事件测试类〉
 *
 * @author xsh
 * @date 2018/10/10
 * @since 1.0.0
 */
public class EventDO {

    private String name ;

    private String type;

    private String  content;

    public String getName() {
        return name;
    }

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

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }

    @Override
    public String toString() {
        return "EventDO{" +
                "name='" + name + '\'' +
                ", type='" + type + '\'' +
                ", content='" + content + '\'' +
                '}';
    }
}

事件测试:

public class SpringEventListenerDemo {

    public static void main(String[] args) {
        EventDO eventDO = new EventDO();
        eventDO.setName("test");
        eventDO.setType("test-type");
        eventDO.setContent("spring cloud hello  world !!! ");
        // 创建spring 容器
        AnnotationConfigApplicationContext  context = new AnnotationConfigApplicationContext();
        // 增加监听器
        context.addApplicationListener(new MyApplicationListener());
        // 上下文启动
        context.refresh();
        // 发布事件
        context.publishEvent(new MyApplicationEvent(eventDO));
    }


    public static class  MyApplicationListener implements ApplicationListener{
        @Override
        public void onApplicationEvent(ApplicationEvent applicationEvent) {
           Object  eventDO   = applicationEvent.getSource();
            System.out.println(eventDO.toString());
        }

    }


    // 创建自定义事件
    public static class  MyApplicationEvent extends ApplicationEvent {

        public MyApplicationEvent(Object source) {
            super(source);
        }

    }

}

3). ApplicationContextInitializer

​ ApplicationContextInitializer其实也是Spring框架原有的概念,其主要目的是在ConfigurableApplicationContext 类型或子类refresh之前,对ApplicationContext实例做进一步的定制。

/**
 *
 * @author xsh
 * @date 2019/1/3
 * @since 1.0.0
 */
public class MyApplicationContextInitializer  implements ApplicationContextInitializer {

    @Override
    public void initialize(ConfigurableApplicationContext applicationContext) {
        System.out.println("    MyApplicationContextInitializer    initialize ...  ");
    }

}

同样在spring.factories 加入为配置

org.springframework.context.ApplicationContextInitializer=com.association.test.MyApplicationContextInitializer

4). CommandLineRunner

​ CommandLineRunner属于SpringBoot特有的扩展接口。

​ CommandLineRunner 需要注意的两点 :

  • 所有CommandLineRunner 执行点是在SpringBoot 应用 ApplicationContext完全初始化开始工作之后(main 方法的最后一步)/
  • 只要在于当前ApplicationContext 应用的 CommandLineRunner 都会被加载执行。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值