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

文章目录

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

前言

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

一、使用 ApplicationListener

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

java 复制代码
import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component;

@Component
public class ApplicationStartupListener implements ApplicationListener<ApplicationReadyEvent> {

    @Override
    public void onApplicationEvent(ApplicationReadyEvent event) {
        System.out.println("Application is ready!");
        // Your custom logic here
    }
}

二、使用 @EventListener

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

java 复制代码
import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.context.event.EventListener;
import org.springframework.stereotype.Component;

@Component
public class ApplicationStartupListener {

    @EventListener
    public void handleApplicationReady(ApplicationReadyEvent event) {
        System.out.println("Application is ready!");
        // Your custom logic here
    }
}

三、实现 CommandLineRunner 或 ApplicationRunner

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

  • CommandLineRunner 接收一个 String 数组作为参数。
  • ApplicationRunner 接收一个 ApplicationArguments 对象作为参数。
java 复制代码
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;

@Component
public class MyCommandLineRunner implements CommandLineRunner {

    @Override
    public void run(String... args) throws Exception {
        System.out.println("Application has started!");
        // Your custom logic here
    }
}

四、使用 SmartLifecycle

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

java 复制代码
import org.springframework.context.SmartLifecycle;
import org.springframework.stereotype.Component;

@Component
public class MySmartLifecycle implements SmartLifecycle {

    private boolean running = false;

    @Override
    public void start() {
        System.out.println("Starting MySmartLifecycle");
        running = true;
        // Your custom logic here
    }

    @Override
    public void stop() {
        System.out.println("Stopping MySmartLifecycle");
        running = false;
        // Your custom logic here
    }

    @Override
    public boolean isRunning() {
        return running;
    }

    @Override
    public int getPhase() {
        return 0;
    }

    @Override
    public boolean isAutoStartup() {
        return true;
    }

    @Override
    public void stop(Runnable callback) {
        stop();
        callback.run();
    }
}

总结

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

相关推荐
winks35 分钟前
Spring Task的使用
java·后端·spring
秋意钟16 分钟前
Spring新版本
java·后端·spring
椰椰椰耶17 分钟前
【文档搜索引擎】缓冲区优化和索引模块小结
java·spring·搜索引擎
mubeibeinv19 分钟前
项目搭建+图片(添加+图片)
java·服务器·前端
青莳吖20 分钟前
Java通过Map实现与SQL中的group by相同的逻辑
java·开发语言·sql
Buleall27 分钟前
期末考学C
java·开发语言
重生之绝世牛码29 分钟前
Java设计模式 —— 【结构型模式】外观模式详解
java·大数据·开发语言·设计模式·设计原则·外观模式
小蜗牛慢慢爬行35 分钟前
有关异步场景的 10 大 Spring Boot 面试问题
java·开发语言·网络·spring boot·后端·spring·面试
Allen Bright43 分钟前
Spring Boot 整合 RabbitMQ:手动 ACK 与 QoS 配置详解
spring boot·rabbitmq·java-rabbitmq
新手小袁_J1 小时前
JDK11下载安装和配置超详细过程
java·spring cloud·jdk·maven·mybatis·jdk11