我们的一个生产应用程序中有一个相当复杂的spring-integration-amqp用例,我们在启动时看到一些“org.springframework.integration.MessageDispatchingException:Dispatcher没有订阅者”异常。在启动时出现初始错误后,我们不再从相同的组件中看到这些异常。这看起来像依赖于AMQP出站适配器的组件上的某种启动竞争条件,并最终在生命周期的早期使用它们。
我可以通过调用发送到PostConstruct方法中连接到出站适配器的通道的网关来重现这一点。
配置:
package gadams;
import org.springframework.amqp.core.Queue;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.integration.annotation.IntegrationComponentScan;
import org.springframework.integration.dsl.IntegrationFlow;
import org.springframework.integration.dsl.IntegrationFlows;
import org.springframework.integration.dsl.amqp.Amqp;
import org.springframework.integration.dsl.channel.MessageChannels;
import org.springframework.messaging.MessageChannel;
@SpringBootApplication
@IntegrationComponentScan
public class RabbitRace {
public static void main(String[] args) {
SpringApplication.run(RabbitRace.class, args);
}
@Bean(name = "HelloOut")
public MessageChannel channelHelloOut() {
return MessageChannels.direct().get();
}
@Bean
public Queue queueHello() {
return new Queue("hello.q");
}
@Bean(name = "helloOutFlow")
public IntegrationFlow flowHelloOutToRabbit(RabbitTemplate rabbitTemplate) {
return IntegrationFlows.from("HelloOut").handle(Amqp.outboundAdapter(rabbitTemplate).routingKey("hello.q"))
.get();
}
}
网关:
package gadams;
import org.springframework.integration.annotation.Gateway;
import org.springframework.integration.annotation.MessagingGateway;
@MessagingGateway
public interface HelloGateway {
@Gateway(requestChannel = "HelloOut")
void sendMessage(String message);
}
成分:
package gadams;
import javax.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.DependsOn;
import org.springframework.stereotype.Component;
@Component
@DependsOn("helloOutFlow")
public class HelloPublisher {
@Autowired
private HelloGateway helloGateway;
@PostConstruct
public void postConstruct() {
helloGateway.sendMessage("hello");
}
}
在我的生产用例中,我们有一个带有PostConstruct方法的组件,我们使用TaskScheduler来调度一些组件,其中一些组件依赖于AMQP出站适配器,其中一些组件最终会立即执行。我已经尝试在涉及出站适配器的IntegrationFlow上放置bean名称,并在使用网关和/或网关本身的bean上使用@DependsOn,但这并没有消除启动时的错误。
答案 0 :(得分:1)
所有内容都称为Lifecycle
。任何Spring Integration端点仅在执行start()
时才开始侦听或生成消息。
通常,对于标准默认autoStartup = true
,它在ApplicationContext.finishRefresh();
中作为
// Propagate refresh to lifecycle processor first.
getLifecycleProcessor().onRefresh();
开始从@PostConstruct
(afterPropertiesSet()
)开始向频道发送消息的时间非常早,因为它远离finishRefresh()
。
你真的应该重新考虑你的生产逻辑和实施到SmartLifecycle.start()
阶段。
查看Reference Manual中的更多信息。