💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
CommandLineRunner 接口可以实现当服务启动时预先加载一些功能。 <br/> **1. 实现接口 CommandLineRunner** ```java /** * 当有多个类实现接口CommandLineRunner时,需要调用注解@Order(100) * 来指定执行顺序,数字越小越先被执行 */ @Component @Order(100) public class CommandLineRunnerDriver implements CommandLineRunner { @Override public void run(String... args) throws Exception { System.out.println("[CommandLineRunnerDriver]: @Order(100)"); } } ``` <br/> **2. 测试,启动 SpringBoot 控制台打印如下** ``` [CommandLineRunnerDriver]: @Order(100) ``` **** 案例代码:https://gitee.com/flymini/codes03/tree/master/learn-bootcompts