spring boot ApplicationRunner 项目启动时初始化运行方法

springBoot | 2019-09-13 10:02:39

我需要再每次启动项目的时候运行一些初始化的东西,就像之前运行initServert,在spring中项目启动运行初始化也很简单:
实现 ApplicationRunner接口 加上注解@Component:

/**
 * 启动执行类
 * houyong 2018/8/3
 */
@Component
public class DingtalkApplicationRunner implements ApplicationRunner {
    @Override
    public void run(ApplicationArguments applicationArguments) throws Exception {
        System.out.println("-- zee dingtalk首次启动运行 --");
    }
}







登录后即可回复 登录 | 注册
    
关注编程学问公众号