1. 程式人生 > >CommandLineRunner 可能會導致你的應用宕機停止,我勸你耗子尾汁

CommandLineRunner 可能會導致你的應用宕機停止,我勸你耗子尾汁

hello,大家好,我是小黑,又和大家見面啦~~ 如果你去某度搜索關鍵詞 `CommandLineRunner 初始化資源` ,截止小黑同學寫這篇推文之前,大概能收到 `1,030,000` 個結果。 ![CommandLineRunner 初始化資源](https://cdn.jsdelivr.net/gh/shenjianeng/pictures@main/2020-12-5/1607159740833-image.png) 網上大部分的文章都在告訴我們說可以使用 `CommandLineRunner` 去初始化資源,但幾乎很少有文章告訴我們:**如果 `CommandLineRunner` 使用不當,就會導致程式出現一些奇怪的異常,更有可能導致我們的應用直接停止執行**。 正在讀這篇文章的你如果也使用了 `CommandLineRunner` 去初始化資源,那麼小黑同學勸你耗子尾汁,趕緊來看一下下面這些案例吧~ ## CommandLineRunner 執行時間太久了??? ```java @Slf4j @SpringBootApplication public class CommandLineRunnerDemoApp { pri