CommandLineRunner 与 ApplicationRunner
功能在容器启动之后,为了实现部分资源的预热,可以通过SpringBoot的扩展接口(CommandLineRunner 与 ApplicationRunner)来实现。注意:执行时机为容器启动完成的时候使用示例@Componentpublic class WarmUpCommandLineRunner implements CommandLineRunner { @Override public void run(String... var1) throws Excep