如何在Spring Boot启动的时候运行一些特定的代码?

如果你想在Spring Boot启动的时候运行一些特定的代码,你可以实现接口ApplicationRunner或者
CommandLineRunner,这两个接口实现方式一样,它们都只提供了一个run方法。

ApplicationRunner:启动获取应用启动的时候参数

CommandLineRunner:启动获取命令行参数

目录

Spring Boot Runner启动器

ApplicationRunner

CommandLineRunner

使用方式

启动顺序


Spring Boot Runner启动器

Runner启动器

如果你想在Spring Boot启动的时候运行一些特定的代码,你可以实现接口 ApplicationRunner或者 CommandLineRunner,这两个接口实现方式一样,它们都只提供了一个run方法。

ApplicationRunner

启动获取应用启动的时候参数。

@FunctionalInterface
public interface ApplicationRunner {
 
	/**
	 * Callback used to run the bean.
	 * @param args incoming application arguments
	 * @throws Exception on error
	 */
	void run(ApplicationArguments args) throws Exception;
 
}

CommandLineRunner

启动获取命令行参数。

@FunctionalInterface
public interface CommandLineRunner {
 
	/**
	 * Callback used to run the bean.
	 * @param args incoming main method arguments
	 * @throws Exception on error
	 */
	void run(String... args) throws Exception;
 
}

使用方式

import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;
 
@Component
public class MyBean implements CommandLineRunner {
    @Override
    public void run(String... args) throws Exception {
        // Do something...
    }
}

或者这样

@Bean
public CommandLineRunner init() {
 
    return (String... strings) -> {
 
    };
 
}

启动顺序

如果启动的时候有多个ApplicationRunner和CommandLineRunner,想控制它们的启动顺序,可以实现 org.springframework.core.Ordered接口或者使用 org.springframework.core.annotation.Order注解。

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值