CommandLineRunner接口
Posted fernfei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CommandLineRunner接口相关的知识,希望对你有一定的参考价值。
一、首先创建一个MyCommandLineRunner类实现CommandLineRunner接口
? ?
@Commponent把pojo注册到spring容器中
@Order(2)这个数越小优先级越前
? ?
二、重写run()函数
? ?
args是系统启动时所传入的参数
? ?
? ?
? ?
? ?
三、传入参数
1、IDEA中传入参数
? ?
? ?
2、打包运行时传入参数
? ?
? ?
三、效果图
? ?
? ?
? ?
以上是关于CommandLineRunner接口的主要内容,如果未能解决你的问题,请参考以下文章
springboot 中CommandLineRunner接口的作用
springboot 中CommandLineRunner接口的作用
CommandLineRunner或者ApplicationRunner接口