Spring Boot CommandLineRunner接口详解
程序员文章站
2022-07-10 18:22:21
文章目录如何使用CommandLineRunner接口配合@Component注解使用配合@SpringBootApplication注解使用多个CommandLineRunner实现类的执行顺序问题实际应用中,会有在项目服务启动的时候就去加载一些数据或做一些事情的情况。为了解决这样的问题,Spring Boot 为我们提供了一个方法,通过实现接口 CommandLineRunner 来实现,实现功能的代码放在实现的run方法中。这段初始化代码在整个应用生命周期内只会执行一次。而且我们可以在run()...
文章目录
实际应用中,会有在项目服务启动的时候就去加载一些数据或做一些事情的情况。为了解决这样的问题,Spring Boot 为我们提供了一个方法,通过实现接口 CommandLineRunner 来实现,实现功能的代码放在实现的run方法中。这段初始化代码在整个应用生命周期内只会执行一次。
而且我们可以在run()方法里使用任何依赖,因为它们已经初始化好了。
如何使用CommandLineRunner接口
配合@Component注解使用
package com.nobody.config; import org.springframework.boot.CommandLineRunner; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; /**
* @Description
* @Author Mr.nobody
* @date 2020/8/27
*/ @Component @Order(value = 1) public class ApplicationStartupRunner implements CommandLineRunner { @Override public void run(String... args) throws Exception { System.out.println("---------- 服务启动后执行,例如执行加载数据等操作 Order=1 ----------"); } }
配合@SpringBootApplication注解使用
package com.nobody; import org.springframework.boot.CommandLineRunner; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Application implements CommandLineRunner { public static void main(String[] args) { SpringApplication.run(Application.class, args); } @Override public void run(String... args) throws Exception { System.out.println("---------- 服务启动后执行,例如执行加载数据等操作 ----------"); } }
多个CommandLineRunner实现类的执行顺序问题
一个应用可能存在多个CommandLineRunner接口实现类,如果我们想设置它们的执行顺序,可以使用 @Order实现。如果不显示设置
package com.nobody.config; import org.springframework.boot.CommandLineRunner; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; /**
* @Description
* @Author Mr.nobody
* @date 2020/8/27
*/ @Component @Order(value = 2) public class ApplicationOrderStartupRunner implements CommandLineRunner { @Override public void run(String... args) throws Exception { System.out.println("---------- 服务启动后执行,例如执行加载数据等操作 Order=2 ----------"); } }
启动服务,可以在控制台看到在Spring Boot启动完之后,执行了多个定义的CommandLineRunner实现类的run方法,并且按@Order注解设置的顺序执行。
注意:在实现CommandLineRunner接口时,run(String… args)方法内部如果抛异常的话,会直接导致应用启动失败,所以,一定要记得将危险的代码放在try-catch代码块里。
本文地址:https://blog.csdn.net/chenlixiao007/article/details/108258437
上一篇: 古代爱情故事之一:苏小妹与秦观的爱情经过了哪些测试?
下一篇: JAVA学生宿舍管理系统
推荐阅读
-
Spring Boot异步输出Logback日志方法详解
-
spring boot Logging的配置以及使用详解
-
spring boot2.0.4集成druid,用jmeter并发测试工具调用接口,druid查看监控的结果
-
使用Spring boot + jQuery上传文件(kotlin)功能实例详解
-
spring boot + jpa + kotlin入门实例详解
-
Spring boot 集成 Druid 数据源过程详解
-
详解Spring Boot Mysql 版本驱动连接池方案选择
-
Spring boot的上传图片功能实例详解
-
详解Spring Boot 异步执行方法
-
Spring Boot应用Docker化的步骤详解