spring-集成:MessageProducer 只能被引用一次
spring-integration: MessageProducer may only be referenced once
我想在多个流程中使用一个网关。我的网关定义是:
@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-集成 5.0.4
我记得你有好几次类似 .handle(myServiceGateway())
的事情。
在这种情况下,您必须从此方法中删除 @Bean
和 @Scope
。它也可以只是 private
。 Java DSL 过程将为您创建 bean。每个流都有自己的实例。如您所愿。
任何 Spring 集成组件根本不能 @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
。无论如何,它们都是从非原型 bean (endpoints
) 中引用的。因此,从本质上讲,原型 bean 的范围增加了。
我想在多个流程中使用一个网关。我的网关定义是:
@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-集成 5.0.4
我记得你有好几次类似 .handle(myServiceGateway())
的事情。
在这种情况下,您必须从此方法中删除 @Bean
和 @Scope
。它也可以只是 private
。 Java DSL 过程将为您创建 bean。每个流都有自己的实例。如您所愿。
任何 Spring 集成组件根本不能 @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
。无论如何,它们都是从非原型 bean (endpoints
) 中引用的。因此,从本质上讲,原型 bean 的范围增加了。