我们在项目中会用到项目启动任务,即项目在启动的时候需要做的一些事,例如:数据初始化、获取第三方数据等等,那么如何在SpringBoot 中实现启动任务,一起来看看吧SpringBoot 中提供了两种项目启动方案,CommandLineRunner 和 ApplicationRunner使用 CommandLineRunner ,需要自定义一个类区实现 CommandLineRunner 接口,例如:我们首先使用 @Component 将该类注册成为 Spring 容器中的一个 Bean2、将项目打包,在启动项目时,输入以下命令:ApplicationRunner 与 CommandLineRu
暂无评论