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