SpringBoot ApplicationRunner/CommandLineRunner

CommandLineRunner、ApplicationRunner 接口是在容器启动成功后的最后一步回调(类似开机自动启动)。

CommandLineRunner、ApplicationRunner 用法和作用都差不多,唯一不同的是在接收的参数形式上不一致。

 

以启动Jar包为例

  CommandLineRunner: java -jar commandLineRunner.jar 0.0.0.0,80

  ApplicationRunner: java -jar applicationRunner.jar --host=0.0.0.0 --port=80

 

参考文章:https://www.jianshu.com/p/5d4ffe267596

posted @ 2019-04-23 22:24  Vincen_shen  阅读(238)  评论(0编辑  收藏  举报