gpt4 book ai didi

Spring @EventListener 注释不起作用

转载 作者:行者123 更新时间:2023-12-04 21:36:56 24 4
gpt4 key购买 nike

我想在一个类中处理多个事件,这是我的示例:

@Lazy(false)
@Component
public class EventListenerImpl {

@EventListener
public void handleContextRefreshedEvent(ContextRefreshedEvent event) {
LOGGER.log(event.getSource());
...
}
}

但是,当我的应用程序启动时,没有执行此方法。

在我的 applicationContext.xml我有:
<context:annotation-config/>
<context:component-scan base-package="..."/>

这对于 @EventListener 来说应该足够了根据文档工作。

旧的实现方式 ApplicationListener<ContextRefreshedEvent>工作得很好。

我正在使用 Spring 4.2.4.RELEASE。

最佳答案

好吧,这对我来说仍然是个谜。我敢打赌这是某种奇怪的 maven/ide 缓存问题,但无论如何这在几次重启后对我有用:

@Lazy(false)
@Component
public class EventListenerImpl {

@EventListener
public void whatever(final ContextRefreshedEvent event) {
event.getSource();
}
}

关于Spring @EventListener 注释不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35313900/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com