将初始化代码添加到 Spring Boot 应用程序的正确方法是什么?

TLDR:我希望我的 Spring Boot 应用程序在启动时运行一些初始化代码。该代码需要访问 Spring bean 和值。


我正在编写一个 Spring Boot 应用程序,它将同时使用队列中的多条消息。为了做到这一点,它需要实例化多个消费者对象。Spring是否有一个好方法来实例化可配置数量的同一类实例?


我必须使用的队列客户端充当线程池。它为我提供的每个消费者对象创建一个线程。消费者对象一次只能接收一条消息,并且它们必须完全处理并确认该消息才能接收另一条消息。消费者不是线程安全的,所以我不能只使用单例实例。


我考虑了下面的方法,但我觉得不合适。这似乎是对注释的滥用,@Component因为Initializer实例在构造后并未使用。有什么更好的方法呢?


@Component

public class Initializer {


    public Initializer(ConsumerRegistry registry, @Value("${consumerCount}") int consumerCount) {

        for (int i = 0; i < consumerCount; i++) {

            // Each registered consumer results in a thread that consumes messages.

            // Incoming messages will be delivered to any consumer thread that's not busy.

            registry.registerConsumer(new Consumer());

        }

    }


}


慕少森
浏览 81回答 1
1回答

茅侃侃

一个ApplicationListener会满足你的需要。它会收到有关注册事件的通知,例如当 ApplicationContext 准备就绪时。您将可以完全访问所有 Bean 和注入。@Componentpublic class StartupApplicationListener implements ApplicationListener<ApplicationReadyEvent> {&nbsp; &nbsp; @Inject&nbsp; &nbsp; private ConsumerRegistry registry;&nbsp; &nbsp; @Inject&nbsp; &nbsp; @Value("${consumerCount}")&nbsp; &nbsp; private int consumerCount;&nbsp; &nbsp; @Override&nbsp; &nbsp; public void onApplicationEvent(ApplicationReadyEvent event) {&nbsp; &nbsp; &nbsp; &nbsp; //do your logic&nbsp; &nbsp; &nbsp; &nbsp; for (int i = 0; i < consumerCount; i++) {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Each registered consumer results in a thread that consumes messages.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Incoming messages will be delivered to any consumer thread that's not busy.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; registry.registerConsumer(new Consumer());&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; }}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java