springboot使用CommandLineRunner解决项目启动时初始化资源的操作

网友投稿 231 2023-02-05

springboot使用CommandLineRunner解决项目启动时初始化资源的操作

前言:

在我们实际工作中,总会遇到这样需求,在项目启动的时候需要做一些初始化的操作,比如初始化线程池,提前加载好加密证书等。

今天就给大家介绍一个 Spring Boot 神器,专门帮助大家解决项目启动初始化资源操作。

这个神器就是 CommandLineRunner,CommandLineRunner 接口的 Component 会在所有 Spring Beans 都初始化之后,SpringApplication.run() 之前执行,非常适合在应用程序启动之初进行一些数据初始化的工作。

正文:

接下来我们就运用案例测试它如何使用,在测试之前在启动类加两行打印提示,方便我们识别 CommandLineRunner 的执行时机。

@SpringBootApplication

public class SpringbootRabbitmqApplication {

public static void main(String[] args) {

System.out.println("The service to start");

SpringApplication.run(SpringbootRabbitmqApplication.class, args);

System.out.println("The service to started");

}

}

接下来我们直接创建一个类继承 CommandLineRunner ,并实现它的 run() 方法。

@Component

public class Runner implements CommandLineRunner {

@Override

public void run(String... args) throws Exception {

System.out.println("The Runner start to initialize ...");

}

}

启动项目进行测试:

...

The service to start.

. ____ _ __ _ _

/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \

( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \

\\/ ___)| |_)| | | | | || (_| | ) ) ) )

' |____| .__|_| |_|_| |_\__, | / / / /

=========|_|==============|___/=/_/_/_/

:: Spring Boot :: (v2.0.2.RELEASE)

...

2021-02-01 11:38:31.314 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - ToKVtLGvMmcat started on port(s): 8078 (http) with context path ''

2021-02-01 11:38:31.317 [main] INFO com.cn.SpringbootRabbitmqApplication - Started SpringbootRabbitmqApplication in 4.124 seconds (JVM running for 6.226)

The Runner start to initialize ...

The service to started

根据控制台的打印信息我们可以看出 CommandLineRunner 中的方法会在 Spring Boot 容器加载之后执行,执行完成后项目启动完成。

如果我们在启动容器的时候需要初始化很多资源,并且初始化资源相互之间有序,那如何保证不同的 CommandLineRunner 的执行顺序呢?Spring Boot 也给出了解决方案。那就是使用 @Order 注解。

我们创建两个 CommandLineRunner 的实现类来进行测试:

第一个实现类:

@Component

@Order(1)

public class OrderRunner1 implements CommandLineRunner {

KVtLGvM @Override

public void run(String... args) throws Exception {

System.out.println("The OrderRunner1 start to initialize ...");

}

}

第二个实现类:

@Component

@Order(2)

public class OrderRunner2 implements CommandLineRunner {

@Override

public void run(String... args) throws ExceptiKVtLGvMon {

System.out.println("The OrderRunner2 start to initialize ...");

}

}

添加完成之后重新启动,观察执行顺序:

...

The service to start.

. ____ _ __ _ _

/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \

( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \

\\/ ___)| |_)| | | | | || (_| | ) ) ) )

' |____| .__|_| |_|_| |_\__, | / / / /

=========|_|==============|___/=/_/_/_/

:: Spring Boot :: (v2.0.2.RELEASE)

...

2021-02-01 11:42:05.724 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 8078 (http) with context path ''

2021-02-01 11:42:05.728 [main] INFO com.cn.SpringbootRabbitmqApplication - Started SpringbootRabbitmqApplication in 3.472 seconds (JVM running for 5.473)

The OrderRunner1 start to initialize ...

The OrderRunner2 start to initialize ...

The Runner start to initialize ...

The service to started

通过控制台的输出我们发现,添加 @Order 注解的实现类最先执行,并且@Order()里面的值越小启动越早。

在实践中,使用ApplicationRunner也可以达到相同的目的,两着差别不大。

以上就是springboot使用CommandLineRunner解决项目启动时初始化资源的操作的详细内容,更多关于springboot 解决项目启动时初始化资源的操作的资料请关注我们其它相关文章!

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:期货数据接口api(期货实时数据接口api)
下一篇:binarySearch在java的查找实例用法
相关文章

 发表评论

暂时没有评论,来抢沙发吧~