您的位置:首页 > 房产 > 家装 > Spring Boot 中,监听应用程序启动的生命周期事件的4种方法

Spring Boot 中,监听应用程序启动的生命周期事件的4种方法

2024/10/14 9:16:53 来源:https://blog.csdn.net/qq_42262444/article/details/140494855  浏览:    关键词:Spring Boot 中,监听应用程序启动的生命周期事件的4种方法

文章目录

  • 前言
    • 在 Spring Boot 中,监听应用程序启动的生命周期事件有多种方法。你可以使用以下几种方式来实现:
  • 一、使用 ApplicationListener
  • 二、使用 @EventListener
  • 三、实现 CommandLineRunner 或 ApplicationRunner
  • 四、使用 SmartLifecycle
  • 总结


前言

在 Spring Boot 中,监听应用程序启动的生命周期事件有多种方法。你可以使用以下几种方式来实现:

一、使用 ApplicationListener

你可以创建一个实现 ApplicationListener 接口的类,监听 ApplicationStartingEvent、ApplicationEnvironmentPreparedEvent、ApplicationPreparedEvent、ApplicationStartedEvent、ApplicationReadyEvent 等事件。

import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component;@Component
public class ApplicationStartupListener implements ApplicationListener<ApplicationReadyEvent> {@Overridepublic void onApplicationEvent(ApplicationReadyEvent event) {System.out.println("Application is ready!");// Your custom logic here}
}

二、使用 @EventListener

你可以在一个 Spring Bean 中使用 @EventListener 注解来监听这些事件。

import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.context.event.EventListener;
import org.springframework.stereotype.Component;@Component
public class ApplicationStartupListener {@EventListenerpublic void handleApplicationReady(ApplicationReadyEvent event) {System.out.println("Application is ready!");// Your custom logic here}
}

三、实现 CommandLineRunner 或 ApplicationRunner

这两个接口允许你在 Spring Boot 应用启动完成之后运行一些特定的代码。

  • CommandLineRunner 接收一个 String 数组作为参数。
  • ApplicationRunner 接收一个 ApplicationArguments 对象作为参数。
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;@Component
public class MyCommandLineRunner implements CommandLineRunner {@Overridepublic void run(String... args) throws Exception {System.out.println("Application has started!");// Your custom logic here}
}

四、使用 SmartLifecycle

如果你需要更精细的控制,可以实现 SmartLifecycle 接口。这提供了一个 isAutoStartup 方法,可以控制组件是否自动启动,以及 stop 和 start 方法,可以控制组件的停止和启动。

import org.springframework.context.SmartLifecycle;
import org.springframework.stereotype.Component;@Component
public class MySmartLifecycle implements SmartLifecycle {private boolean running = false;@Overridepublic void start() {System.out.println("Starting MySmartLifecycle");running = true;// Your custom logic here}@Overridepublic void stop() {System.out.println("Stopping MySmartLifecycle");running = false;// Your custom logic here}@Overridepublic boolean isRunning() {return running;}@Overridepublic int getPhase() {return 0;}@Overridepublic boolean isAutoStartup() {return true;}@Overridepublic void stop(Runnable callback) {stop();callback.run();}
}

总结

根据你的需求,你可以选择以上任意一种方式来监听 Spring Boot 应用的启动生命周期事件。ApplicationListener 和 @EventListener 更适合处理特定的应用生命周期事件,而 CommandLineRunner 和 ApplicationRunner 更适合在应用启动后执行一些初始化逻辑。SmartLifecycle 则适合需要更精细控制生命周期的情况。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com