Fix jms.adoc for the Java DSL of jmsOutboundFlow

Signed-off-by: Ma,Jiandong <jiandong.ma.cn@gmail.com>
This commit is contained in:
Jiandong
2025-04-16 22:15:09 +08:00
committed by GitHub
parent 1949453f08
commit 5a1c3be1ee

View File

@@ -303,7 +303,8 @@ public IntegrationFlow jmsOutboundFlow() {
return IntegrationFlow.from("exampleChannel")
.handle(Jms.outboundAdapter(cachingConnectionFactory())
.destinationExpression("headers." + SimpMessageHeaderAccessor.DESTINATION_HEADER)
.configureJmsTemplate(t -> t.id("jmsOutboundFlowTemplate")));
.configureJmsTemplate(t -> t.id("jmsOutboundFlowTemplate")))
.get();
}
----