springBoot自动执行方法几种方式以及执行顺序

package cn.com.demo.config;

import org.springframework.boot.ApplicationArguments;
import org.springframework.boot.ApplicationRunner;
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;
import org.springframework.web.context.ServletContextAware;

import javax.annotation.PostConstruct;
import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;

/**
 * @author JMWANG
 */
@Component
public class Preload implements ServletContextAware, ServletContextListener, ApplicationRunner, CommandLineRunner {
    /**
     * 在填充普通bean属性之后但在初始化之前调用
     * 类似于initializingbean的afterpropertiesset或自定义init方法的回调
     * 该方法会在填充完普通Bean的属性,但是还没有进行Bean的初始化之前执行 
     */
    @Override
    public void setServletContext(ServletContext servletContext) {
        System.out.println("111111111111111111111111111111111setServletContext方法");
    }

    @PostConstruct
    public static void haha(){
        System.out.println("222222222222222222222222222222222222222222222@Postcontruct’在依赖注入完成后自动调用");
    }

    /**
     * 在初始化Web应用程序中的任何过滤器或servlet之前,将通知所有servletContextListener上下文初始化。
     */
    @Override
    public void contextInitialized(ServletContextEvent sce) {
        //ServletContext servletContext = sce.getServletContext();
        System.out.println("33333333333333333333333333333333333333333执行contextInitialized方法");
    }

    /**
     * 用于指示bean包含在SpringApplication中时应运行的接口。可以定义多个applicationrunner bean
     * 在同一应用程序上下文中,可以使用有序接口或@order注释对其进行排序。
     */
    @Override
    public void run(ApplicationArguments args) throws Exception {
        System.out.println("4444444444444444444444444444444444444444ApplicationRunner的run方法");
    }

    /**
     * 用于指示bean包含在SpringApplication中时应运行的接口。可以在同一应用程序上下文中定义多个commandlinerunner bean,并且可以使用有序接口或@order注释对其进行排序。
     * 如果需要访问applicationArguments而不是原始字符串数组,请考虑使用applicationrunner。
     *
     */
    @Override
    public void run(String[] arg) throws Exception {
        System.out.println("55555555555555555555555555555555555555CommandLineRunner的run方法");
    }
}
111111111111111111111111111111111setServletContext方法
222222222222222222222222222222222222222222222@Postcontruct’在依赖注入完成后自动调用
33333333333333333333333333333333333333333执行contextInitialized方法
[ INFO ] [2021-11-26 17:35:12,166] [main] org.springframework.scheduling.concurrent.ExecutorConfigurationSupport -Initializing ExecutorService 'applicationTaskExecutor'
[ INFO ] [2021-11-26 17:35:12,383] [main] org.springframework.scheduling.concurrent.ExecutorConfigurationSupport -Initializing ExecutorService 'taskScheduler'
[ INFO ] [2021-11-26 17:35:12,437] [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer -Tomcat started on port(s): 9641 (http) with context path ''
[ INFO ] [2021-11-26 17:35:12,443] [scheduling-1] cn.com.demo.config.CompleteScheduleConfig -定时器正常加载...
[ INFO ] [2021-11-26 17:35:12,446] [main] org.springframework.boot.StartupInfoLogger -Started DemoApplication in 2.085 seconds (JVM running for 2.915)
4444444444444444444444444444444444444444ApplicationRunner的run方法
55555555555555555555555555555555555555CommandLineRunner的run方法
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

一只小小狗

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值