我是靠谱客的博主 单薄树叶,最近开发中收集的这篇文章主要介绍框架源码 -- springboot启动后Runner加载原理启动后加载原理,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

启动后加载原理

场景

在项目启动后,马上进行一些一次性的初始化工作,如读取加载资源文件、或者执行其它外部程序。

Runner两种形式

ApplicationRunner

import org.springframework.boot.ApplicationArguments;
import org.springframework.boot.ApplicationRunner;
import org.springframework.stereotype.Component;

@Component
public class RunAfterConfig implements ApplicationRunner {
	@Override 
	public void run(ApplicationArguments args) throws Exception{
		System.out.println("启动后执行");
	}
}

CommandLineRunner

import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;

@Component
public class RunAfterConfig implements CommandLineRunner{
    @Override 
    public void run(String... args) throws Exception{
    	System.out.println("启动后执行");
    }
}

实现原理

实现源码

private void callRunners(ApplicationContext context, ApplicationArguments args) {
   List<Object> runners = new ArrayList();
    runners.addAll(context.getBeansOfType(ApplicationRunner.class).values());
    runners.addAll(context.getBeansOfType(CommandLineRunner.class).values());
    AnnotationAwareOrderComparator.sort(runners);
    Iterator var4 = (new LinkedHashSet(runners)).iterator();

    while(var4.hasNext()) {
        Object runner = var4.next();
        if (runner instanceof ApplicationRunner) {
            this.callRunner((ApplicationRunner)runner, args);
        }

        if (runner instanceof CommandLineRunner) {
            this.callRunner((CommandLineRunner)runner, args);
        }
    }

}
  • SpringApplication.run调用callRunners方法
  • 查找实现了ApplicationRunner和CommandLineRunner接口的Bean,统一存放在一个list中
  • 根据Bean的order进行排序
  • 循环调用每一个Runner Bean的run接口。

最后

以上就是单薄树叶为你收集整理的框架源码 -- springboot启动后Runner加载原理启动后加载原理的全部内容,希望文章能够帮你解决框架源码 -- springboot启动后Runner加载原理启动后加载原理所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部