Spring应用启动后执行任务的几种方法

Spring应用启动后执行任务的几种方法:

1.使用@PostConstruct注解,加在要执行的方法上,使任务可在该类初始化后执行。在该方法中可使用spring注入的其它bean,所在类必须是spring组件。
类似方法有 实现 InitializingBean 接口的afterPropertiesSet()方法;在xml配置中配置bean的init-method属性。
该方法所在类的初始化顺序为:
构造方法constructor --> @Autowired --> @PostConstruct --> InitializingBean --> init-method

2.实现ApplicationContextAware接口。重写setApplicationContext()方法,在此方法中执行额外任务。

3.使用自定义监听器继承ContextLoaderListener,实现contextInitialized方法。

4.springboot给我们提供了两种“开机启动”方式:可选择实现ApplicationRunnerCommandLineRunner 两个接口。
是在SpringApplication.run(…)方法执行结束前自动调用,run方法中都可以使用命令行参数。
多个实现类时使用@Order(value = 1)排序决定执行顺序。

5.springboot应用可在启动类的main方法中直接调用待执行的程序。可通过SpringApplication.run(…)方法返回的contex对象,获取spring容器中的service bean,执行该bean的方法。

你可能感兴趣的:(Spring应用启动后执行任务的几种方法)