男性深夜解压 【榨汁女神】
https://shop321260254.taobao.com/?spm=2013.1.1000126.d21.7e1d3db3oibAUR
1. 实现ApplicationRunner接口, 重写run方法
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.ApplicationArguments;
import org.springframework.boot.ApplicationRunner;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
@Slf4j
@Component
@Order(2) //order 值越小越先执行
public class MyAppRunner implements ApplicationRunner {
@Override
public void run(ApplicationArguments args) {
createHttpClient();
}
private void createHttpClient() {
log.info("项目启动了, 执行--------ApplicationRunner");
// TODO
}
}
2. 实现CommandLineRunner接口, 重写run方法
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.CommandLineRunner;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
@Slf4j
@Component
@Order(3) //order 值越小越先执行
public class MyComRunner implements CommandLineRunner {
@Override
public void run(String... args) throws Exception {
createHttpClient();
}
private void createHttpClient() {
log.info("项目启动了, 执行--------CommandLineRunner");
// TODO
}
}
执行结果
文章来源地址https://www.toymoban.com/news/detail-655612.html
ApplicationRunner和CommandLineRunner, 随便你实现哪一个接口都可以
文章来源:https://www.toymoban.com/news/detail-655612.html
到了这里,关于Springboot项目启动后按顺序加载自定义类 (demo)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!