我想在多个流程中使用网关。我的网关定义是:
@Bean
@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
public MarshallingWebServiceOutboundGateway myServiceGateway() {
Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
marshaller.setPackagesToScan("blah.*");
MarshallingWebServiceOutboundGateway gateway = new MarshallingWebServiceOutboundGateway(
serviceEndpoint, marshaller, messageFactory);
gateway.setMessageSender(messageSender);
gateway.setRequestCallback(messageCallback);
return gateway;
}
请注意,我已在范围原型中定义了消息网关bean,以便Spring应创建多个网关实例。不过我在启动时收到了这条消息:
Caused by: java.lang.IllegalArgumentException: A reply MessageProducer may only be referenced once (myServiceGateway) - use @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE) on @Bean definition.
为什么不坚持不能多次引用网关,如何从多个流中使用相同的网关?
使用spring-integration 5.0.4
答案 0 :(得分:1)
我有几次像.handle(myServiceGateway())
这样的东西。
在这种情况下,您必须从此方法中删除@Bean
和@Scope
。它也可以只是private
。 Java DSL流程将为您创建bean。每个流程都有自己的实例。按照你的要求。
任何Spring Integration组件都不能@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
。无论如何,它们都是从非原型bean(endpoints
)引用的。因此,基本上,原型bean的范围会增加。