springboot项目初始化加载
Posted 故意养只喵叫顺儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot项目初始化加载相关的知识,希望对你有一定的参考价值。
@Component public class Runner implements CommandLineRunner { @Override public void run(String... args) throws Exception { System.out.println("The Runner start to initialize ..."); } }
项目启动的时候加载缓存之类的可以使用此方法,主要是实现CommandLineRunner,然后重写run方法
以上是关于springboot项目初始化加载的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot项目预加载数据——ApplicationRunnerCommandLineRunnerInitializingBean @PostConstruct区别