SpringBoot中CommandLineRunner详解(含源码)
SpringBoot应用启动时,可以实现CommandLineRunner接口,并实现其run方法,以便在SpringBoot完成启动后执行一些自定义逻辑。
以下是一个简单的实现CommandLineRunner接口的类示例:
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
@SpringBootApplication
public class CommandLineRunnerApp {
public static void main(String[] args) {
SpringApplication.run(CommandLineRunnerApp.class, args);
}
@Bean
public CommandLineRunner runnner() {
return args -> {
// 在这里编写你的逻辑
System.out.println("CommandLineRunner执行,参数:" + args.toString());
};
}
}
在这个例子中,runnner方法返回了一个CommandLineRunner的实现,并且在run方法中打印出了启动时传递的参数。
SpringBoot启动时会自动检测实现了CommandLineRunner接口的Bean,并调用其run方法。这个接口常用于执行一些基于启动参数的初始化工作或者简单的定时任务等。
评论已关闭