springboot启动前执行方法的四种方式总结

第一种  @PostConstruct注解

@Configuration
public class Test1 {
    @Autowired
    private Environment environment;
    @PostConstruct
    public void test(){
        String property = environment.getProperty("aaa.bbb");
        System.out.println("test1"+property);
    }
}

第二种  实现InitializingBean接口

@Configuration
public class Test2 implements InitializingBean {
    @Autowired
    private Environment environment;
    @Override
    public void afterPropertiesSet() throws Exception {
        String property = environment.getProperty("aaa.bbb");
        System.out.println("test2"+property);
    }
}

第三种 实现BeanPostProcessor接口

@Configuration
public class Test3 implements BeanPostProcessor {
    @Autowired
    private Environment environment;
    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
        String property = environment.getProperty("aaa.bbb");
        System.out.println("test3"+property);
        return bean;
    }
    @Override
    public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
        return bean;
    }
}

第四种  在启动类run之前执行方法

@SpringBootApplication
public class DemoApplication {
    public static void main(String[] args) {
        System.out.println("test4");
        SpringApplication.run(DemoApplication.class, args);
    }
}

当然这是不可取的

他们运行的优先级是

启动类前->BeanPostProcessor->@PostConstruct->InitializingBean

值得注意的是第三种方式,他可以让实现类里的方法提前执行

同样的使用@PostConstruct的两个类

@Configuration
public class Test1 {
    @PostConstruct
    public void test(){
        System.out.println("test1");
    }
}

第一个没有实现BeanPostProcessor接口

@Configuration
public class Test3 implements BeanPostProcessor {
    @Autowired
    private Environment environment;
    @PostConstruct
    public void  test(){
        System.out.println("test3");
    }
}

第二个实现了BeanPostProcessor接口,但是没有重写他的方法

打印结果如下

springboot启动前执行方法的四种方式总结_第1张图片

可以看到同样是使用了@PostConstruct注解,但是他们的执行顺序却截然不同

BeanPostProcessor为每一个spring维护的对象调用前后做操作,具体可以参照这篇博文

www.jb51.net/article/234143.htm

知道了启动时的加载顺序,对我们做一些初始化工作有帮助。

总结

到此这篇关于springboot启动前执行方法的四种方式的文章就介绍到这了,更多相关springboot启动前执行方法内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(springboot启动前执行方法的四种方式总结)