CommandLineRunner预加载数据
程序员文章站
2022-06-22 12:01:32
在使用SpringBoot构建项目时,我们通常有一些预先数据的加载。那么SpringBoot提供了一个简单的方式来实现–CommandLineRunner。 CommandLineRunner是一个接口,我们需要时,只需实现该接口就行。如果存在多个加载的数据,我们也可以使用@Order注解来排序。 ......
在使用springboot构建项目时,我们通常有一些预先数据的加载。那么springboot提供了一个简单的方式来实现–commandlinerunner。
commandlinerunner是一个接口,我们需要时,只需实现该接口就行。如果存在多个加载的数据,我们也可以使用@order注解来排序。
案例:
分别定义了一个数据加载类mystartuprunner1,排序为2;以及另一个数据加载类mystartuprunner2,排序为1。
@component @order(value = 2) public class mystartuprunner1 implements commandlinerunner{ @override public void run(string... strings) throws exception { system.out.println(">>>>>>>>>>>>>>>服务启动执行,执行加载数据等操作 mystartuprunner1 order 2 <<<<<<<<<<<<<"); } } @component @order(value = 1) public class mystartuprunner2 implements commandlinerunner { @override public void run(string... strings) throws exception { system.out.println(">>>>>>>>>>>>>>>服务启动执行,执行加载数据等操作 mystartuprunner2 order 1 <<<<<<<<<<<<<"); } }
执行结果如下:
>>>>>>>>>>>>>>>服务启动执行,执行加载数据等操作 mystartuprunner2 order 1 <<<<<<<<<<<<<
>>>>>>>>>>>>>>>服务启动执行,执行加载数据等操作 mystartuprunner1 order 2 <<<<<<<<<<<<<