Runner启动器 如果你想在Spring Boot启动的时候运行一些特定的代码,你可以实现接口ApplicationRunner或者CommandLineRunner,这两个接口实现方式一样,它们都只提供了一个run方法. CommandLineRunner:启动获取命令行参数. public interface CommandLineRunner { /** * Callback used to run the bean. * @param args incoming main method…