在实际开发中遇到了一写需求:当项目启动完成后立即执行某些方法用于完成某些应用数据的初始化。查阅文献后找到以下几种实现方式:
1.实现ApplicationRunner接口
-
-
// 指定其执行顺序,值越小优先级越高
-
-
public class MyApplicationRunner implements ApplicationRunner {
-
-
private static final Logger LOG = LoggerFactory.getLogger(MyApplicationRunner.class);
-
/**
-
* 工程启动结束后会立即执行的方法
-
*
-
*
-
*/
-
-
public void run(ApplicationArguments args) throws Exception {
-
LOG.info("MyApplicationRunner execute ................args:{}",args);
-
}
-
}
2.实现CommandLineRunner接口
-
-
//指定其执行顺序,值越小优先级越高
-
-
public class MyCommandLineRunner implements CommandLineRunner {
-
private static final Logger LOG = LoggerFactory.getLogger(MyCommandLineRunner.class);
-
/**
-
* 工程启动结束后会立即执行的方法
-
*
-
*
-
*/
-
-
public void run(String... args) throws Exception {
-
LOG.info("MyCommandLineRunner execute ..... args:{}",args);
-
}
-
}
3.执行效果
两种方式都是在spring boot启动之后执行的,唯一的区别就是参数不同,执行结果如下所示: