如何让SpringBoot项目启动时执行特定代码

  • Post author:
  • Post category:其他


(其实直接在main方法里写也不是执行不了) 如果只是简单的一些语句,写在main中可能会方便一些

但如果需要调用spring容器中的对象可能会要吃瘪,因为main方法是static的,而获取ioc对象不能使用static直接获取(会报错) 当调用@AutoWired获得ioc容器中的对象时

@Autowired
private static TestService testService;

Exception in thread “main” java.lang.NullPointerException

当调用@Resource获得ioc容器中的对象时

@Resource
private static TestService testService;

Caused by: java.lang.IllegalStateException: @Resource annotation is not supported on static fields

两个函数接口

有两个函数接口类都可以实现

1.ApplicationRunner接口


源码

package org.springframework.boot;

@FunctionalInterface
public interface ApplicationRunner {
    void run(ApplicationArguments args) throws Exception;
}


使用方法

使用@SpringBootApplication注释的ApplicationMain启动类实现ApplicationRunner接口,并实现run方法即可 在main方法将spring启动完成后会执行run方法中的程序

@SpringBootApplication
public class BootTestApplication implements ApplicationRunner{

    public static void main(String[] args) {
        SpringApplication.run(BootTestApplication.class, args);
    }

    @Override
    public void run(ApplicationArguments args) throws Exception {
        System.out.println("ApplicationRunner.run");
    }
}

2.CommandLineRunner接口


源码



版权声明:本文为zhangxiboss_zx原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。