Spring Boot 启动时自动执行代码的几种方式,还有谁不会??
Java后端技术
共 2465字,需浏览 5分钟
·
2022-06-10 20:14
往期热门文章:
4、让人上瘾的新一代开发神器,彻底告别Controller、Service、Dao等方法
来源:blog.csdn.net/u011291072/article/details/81813662
前言
java自身的启动时加载方式
Spring启动时加载方式
代码测试
总结
前言
@PostConstruct
注解实现。ApplicationRunner
与CommandLineRunner
接口去实现启动后运行的功能。在这里整理一下,在这些位置执行的区别以及加载顺序。java自身的启动时加载方式
static代码块
构造方法
Spring启动时加载方式
@PostConstruct注解
ApplicationRunner和CommandLineRunner
CommandLineRunner
和ApplicationRunner
。ApplicationRunner
的run方法入参为ApplicationArguments
,为CommandLineRunner
的run方法入参为String数组。何为ApplicationArguments
Provides access to the arguments that were used to run a SpringApplication.
SpringApplication.run(…)
的应用参数。Order注解
CommandLineRunner
和ApplicationRunner
接口时,可以通过在类上添加@Order注解来设定运行顺序。代码测试
@Component
public class TestPostConstruct {
static {
System.out.println("static");
}
public TestPostConstruct() {
System.out.println("constructer");
}
@PostConstruct
public void init() {
System.out.println("PostConstruct");
}
}
@Component
@Order(1)
public class TestApplicationRunner implements ApplicationRunner{
@Override
public void run(ApplicationArguments applicationArguments) throws Exception {
System.out.println("order1:TestApplicationRunner");
}
}
@Component
@Order(2)
public class TestCommandLineRunner implements CommandLineRunner {
@Override
public void run(String... strings) throws Exception {
System.out.println("order2:TestCommandLineRunner");
}
}
总结
@Component
注解的类,加载类并初始化对象进行自动注入。加载类时首先要执行static静态代码块中的代码,之后再初始化对象时会执行构造方法。@PostConstruct
注解的方法。当容器启动成功后,再根据@Order注解的顺序调用CommandLineRunner
和ApplicationRunner
接口类中的run方法。static
>constructer
>@PostConstruct
>CommandLineRunner
和ApplicationRunner
.往期热门文章:
1、Mybatis-Plus官方发布分库分表神器,一个依赖轻松搞定!
2、Java 中的 BigDecimal,80% 的人竟然都用错了。。。
4、Java/Spring/Dubbo三种SPI机制,谁更好?
评论