CommandLineRunner接口

一、首先创建一个MyCommandLineRunner类实现CommandLineRunner接口

   

CommandLineRunner接口

@Commponent把pojo注册到spring容器中

@Order(2)这个数越小优先级越前

   

二、重写run()函数

   

CommandLineRunner接口

args是系统启动时所传入的参数

   

   

   

   

三、传入参数

1、IDEA中传入参数

CommandLineRunner接口

   

   

2、打包运行时传入参数

CommandLineRunner接口

   

   

三、效果图

   

CommandLineRunner接口

   

CommandLineRunner接口

   

上一篇:springboot中使用CommandLineRunner和ApplicationRunner


下一篇:项目启动后自动运行某个方法与定时执行任务