返回顶部
首页 > 资讯 > 精选 >Springboot启动后怎么执行
  • 198
分享到

Springboot启动后怎么执行

2023-07-06 04:07:35 198人浏览 八月长安
摘要

这篇文章主要介绍了SpringBoot启动后怎么执行的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇springboot启动后怎么执行文章都会有所收获,下面我们一起来看看吧。一、注解@PostConstruct使

这篇文章主要介绍了SpringBoot启动后怎么执行的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇springboot启动后怎么执行文章都会有所收获,下面我们一起来看看吧。

一、注解@PostConstruct

使用注解@PostConstruct是最常见的一种方式,存在的问题是如果执行的方法耗时过长,会导致项目在方法执行期间无法提供服务。

@Componentpublic class StartInit {////    @Autowired   可以注入bean//    ISysUserService userService;    @PostConstruct    public void init() throws InterruptedException {        Thread.sleep(10*1000);//这里如果方法执行过长会导致项目一直无法提供服务        System.out.println(123456);    }}

二、CommandLineRunner接口

实现CommandLineRunner接口 然后在run方法里面调用需要调用的方法即可,好处是方法执行时,项目已经初始化完毕,是可以正常提供服务的。

同时该方法也可以接受参数,可以根据项目启动时: java -jar demo.jar arg1 arg2 arg3 传入的参数进行一些处理。

@Componentpublic class CommandLineRunnerImpl implements CommandLineRunner {    @Override    public void run(String... args) throws Exception {        System.out.println(Arrays.toString(args));    }}

三、实现ApplicationRunner接口

实现ApplicationRunner接口和实现CommandLineRunner接口基本是一样的。

唯一的不同是启动时传参的格式,CommandLineRunner对于参数格式没有任何限制,ApplicationRunner接口参数格式必须是:–key=value

@Componentpublic class ApplicationRunnerImpl implements ApplicationRunner {    @Override    public void run(ApplicationArguments args) throws Exception {        Set<String> optionNames = args.getOptionNames();        for (String optionName : optionNames) {            List<String> values = args.getOptionValues(optionName);            System.out.println(values.toString());        }    }}

四、实现ApplicationListener

实现接口ApplicationListener方式和实现ApplicationRunner,CommandLineRunner接口都不影响服务,都可以正常提供服务,注意监听的事件,通常是ApplicationStartedEvent 或者ApplicationReadyEvent,其他的事件可能无法注入bean。

@Componentpublic class ApplicationListenerImpl implements ApplicationListener<ApplicationStartedEvent> {    @Override    public void onApplicationEvent(ApplicationStartedEvent event) {        System.out.println("listener");    }}

五、四种方式的执行顺序

注解方式@PostConstruct 始终最先执行

如果监听的是ApplicationStartedEvent 事件,则一定会在CommandLineRunner和ApplicationRunner 之前执行。

如果监听的是ApplicationReadyEvent 事件,则一定会在CommandLineRunner和ApplicationRunner 之后执行。

CommandLineRunner和ApplicationRunner 默认是ApplicationRunner先执行,如果双方指定了@Order 则按照@Order的大小顺序执行,大的先执行。

关于“Springboot启动后怎么执行”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“Springboot启动后怎么执行”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网精选频道。

--结束END--

本文标题: Springboot启动后怎么执行

本文链接: https://lsjlt.com/news/357835.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作