前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Hello World

Hello World

原创
作者头像
用户5161060
修改2020-07-16 17:49:17
6960
修改2020-07-16 17:49:17
举报
文章被收录于专栏:Hello1
代码语言:javascript
复制
public ConfigurableApplicationContext run(String... args) {    
   
    // 1 创建并启动计时监控类
    StopWatch stopWatch = new StopWatch();
    stopWatch.start();    

    // 2 初始化应用上下文和异常报告集合
    ConfigurableApplicationContext context = null;
    Collection<SpringBootExceptionReporter> exceptionReporters = new ArrayList<>();    

    // 3 设置系统属性 java.awt.headless 的值,默认为true
    configureHeadlessProperty();    

    // 4、创建所有 Spring 运行监听器并发布应用启动事件
    SpringApplicationRunListeners listeners = getRunListeners(args);
    listeners.starting();    
    try {        // 5、初始化默认应用参数类
        ApplicationArguments applicationArguments = new DefaultApplicationArguments(
                args);                
        // 6、根据运行监听器和应用参数来准备 Spring 环境
        ConfigurableEnvironment environment = prepareEnvironment(listeners,
                applicationArguments);
        configureIgnoreBeanInfo(environment);        
        // 7、创建 Banner 打印类
        Banner printedBanner = printBanner(environment);        
        // 8、创建应用上下文
        context = createApplicationContext();        
        // 9、准备异常报告器
        exceptionReporters = getSpringFactoriesInstances(
                SpringBootExceptionReporter.class,                new Class[] { ConfigurableApplicationContext.class }, context);                
        // 10、准备应用上下文
        prepareContext(context, environment, listeners, applicationArguments,
                printedBanner);                
        // 11、刷新应用上下文
        refreshContext(context);        
        // 12、应用上下文刷新后置处理
        afterRefresh(context, applicationArguments);        
        // 13、停止计时监控类
        stopWatch.stop();        
        // 14、输出日志记录执行主类名、时间信息
        if (this.logStartupInfo) {            new StartupInfoLogger(this.mainApplicationClass)
                    .logStarted(getApplicationLog(), stopWatch);
        }        
        // 15、发布应用上下文启动完成事件
        listeners.started(context);        
        // 16、执行所有 Runner 运行器
        callRunners(context, applicationArguments);
    }    catch (Throwable ex) {
        handleRunFailure(context, ex, exceptionReporters, listeners);        throw new IllegalStateException(ex);
    }    try {        // 17、发布应用上下文就绪事件
        listeners.running(context);
    }    catch (Throwable ex) {
        handleRunFailure(context, ex, exceptionReporters, null);        throw new IllegalStateException(ex);
    }    
    // 18、返回应用上下文
    return context;
}

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档