大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
CommandLineRunner是一个带有run方法的简单spring引导接口。Spring Boot启动后将自动调用实现CommandLineRunner接口的所有bean的run方法。
创新互联-专业网站定制、快速模板网站建设、高性价比尼勒克网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式尼勒克网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖尼勒克地区。费用合理售后完善,10余年实体公司更值得信赖。Command Line Runner在加载应用程序上下文之后以及Spring Application run方法完成之前执行,相当于你的应用的初始化过程,一般用来实现一些数据预先加载或预先处理。
@SpringBootApplication public class DemoApplication implements CommandLineRunner { private final Logger logger = LoggerFactory.getLogger(DemoApplication.class); public static void main(String args) { SpringApplication.run(DemoApplication.class, args); } @Override public void run(String... strings) throws Exception { .... } }