码迷,mamicode.com
首页 > 编程语言 > 详细

Java项目启动时执行指定方法的几种方式

时间:2019-08-27 17:32:17      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:bsp   三种方式   sys   strong   pre   exception   java   void   comm   

1.使用 @PostConstruct,作用于方法上面。

@Component
public class PostConstruct {

@PostConstruct
public void test() {
System.out.println("PostConstruct:开始运行...");
}
}

2.使用 ApplicationRunner。

@Component
public class Start implements CommandLineRunner {
@Override
public void run(String... args) throws Exception {
System.out.println("CommandLineRunner:开始运行...");
}
}

3.使用 CommandLineRunner 接口

@Component
public class Start1 implements ApplicationRunner {
@Override
public void run(ApplicationArguments args) throws Exception {
System.out.println("ApplicationRunner:开始运行...");
}
}

以上三种方式都是在项目启动的时候加载指定的方法,第一种使用的是 注解的方式,第二种、第三种使用的是实现接口的方式。

它们的执行顺讯为 @PostConstruct---》ApplicationRunner---》CommandLineRunner。















1.使用 @PostConstruct,作用于方法上面。

Java项目启动时执行指定方法的几种方式

标签:bsp   三种方式   sys   strong   pre   exception   java   void   comm   

原文地址:https://www.cnblogs.com/ming-blogs/p/11419130.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!