spring boot:ApplicationRunner和CommandLineRunner用法区别
程序员文章站
2022-03-02 17:32:19
...
业务场景:
应用服务启动时,加载一些数据和执行一些应用的初始化动作。如:删除临时文件,清除缓存信息,读取配置文件信息,数据库连接等。
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 {
}
}
上一篇: Maven构建java项目为可执行的jar包(包含依赖jar包)
下一篇: Spring Boot Using the ApplicationRunner or CommandLineRunner
推荐阅读
-
【Spring Boot实战与进阶】过滤器和拦截器的使用及其区别
-
Spring @Valid和@Validated区别和用法实例
-
Spring Boot :@Controller和@RestController的区别、@RequestMapping说明
-
Spring Boot之CommandLineRunner和ApplicationRunner【从零开始学Spring Boot】
-
Spring Boot之ApplicationRunner/CommandLineRunner自启动
-
spring boot:ApplicationRunner和CommandLineRunner用法以及区别
-
比较Java中struts2和spring MVC的用法区别
-
比较Java中struts2和spring MVC的用法区别
-
Spring @Valid和@Validated区别和用法实例
-
Spring Boot CommandLineRunner/ApplicationRunner