spring boot:ApplicationRunner和CommandLineRunner用法以及区别
程序员文章站
2022-04-28 22:50:25
...
业务场景:
应用服务启动时,加载一些数据和执行一些应用的初始化动作。如:删除临时文件,清除缓存信息,读取配置文件信息,数据库连接等。
1、SpringBoot提供了CommandLineRunner和ApplicationRunner接口。当接口有多个实现类时,提供了@order注解实现自定义执行顺序,也可以实现Ordered接口来自定义顺序。
注意:数字越小,优先级越高,也就是@Order(1)注解的类会在@Order(2)注解的类之前执行。
两者的区别在于:
ApplicationRunner中run方法的参数为ApplicationArguments,而CommandLineRunner接口中run方法的参数为String数组。想要更详细地获取命令行参数,那就使用ApplicationRunner接口
ApplicationRunner
@Component
@Order(value = 10)
public class AgentApplicationRun2 implements ApplicationRunner {
@Override
public void run(ApplicationArguments applicationArguments) throws Exception {
}
}
CommandLineRunner
@Component
@Order(value = 11)
public class AgentApplicationRun implements CommandLineRunner {
@Override
public void run(String... strings) throws Exception {
}
}
这两个接口的不同之处在于:
ApplicationRunner中run方法的参数为ApplicationArguments,而CommandLineRunner接口中run方法的参数为String数组.
上一篇: PHP常用函数总结
下一篇: Vue.js 动态绑定CSS样式
推荐阅读
-
Spring Boot之CommandLineRunner和ApplicationRunner【从零开始学Spring Boot】
-
spring boot:ApplicationRunner和CommandLineRunner用法以及区别
-
Spring Boot CommandLineRunner和ApplicationRunner
-
Spring Boot CommandLineRunner和ApplicationRunner
-
spring boot:ApplicationRunner和CommandLineRunner用法区别
-
Spring Boot之CommandLineRunner和ApplicationRunner
-
Spring Boot学习(六):ApplicationRunner和CommandLineRunner
-
Spring Boot之CommandLineRunner和ApplicationRunner
-
Spring Boot CommandLineRunner和ApplicationRunner