From 5a1c3be1ee4fa61f58bc4861d87560e10b6de85d Mon Sep 17 00:00:00 2001 From: Jiandong Date: Wed, 16 Apr 2025 22:15:09 +0800 Subject: [PATCH] Fix `jms.adoc` for the Java DSL of `jmsOutboundFlow` Signed-off-by: Ma,Jiandong --- src/reference/antora/modules/ROOT/pages/jms.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/reference/antora/modules/ROOT/pages/jms.adoc b/src/reference/antora/modules/ROOT/pages/jms.adoc index ac03a447d8..814e91f88a 100644 --- a/src/reference/antora/modules/ROOT/pages/jms.adoc +++ b/src/reference/antora/modules/ROOT/pages/jms.adoc @@ -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(); } ----