logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

SpringBoot实现多个ApplicationRunner时部分接口未执行

在spring的项目中,需要在容器启动之后执行一些操作。spring提供了ApplicationRunner和CommandLineRunner两个接口可以帮助我们实现这种需求。当项目中实现了多个ApplicationRunner接口,并且其中一个使用了类似于while(true)这样不会推出的循环体。将会导致后续的ApplicationRunner接口不会被调用。如下:@Compo...

#spring#spring boot#java
到底了