Changes for page Asynchronous Routing
Last modified by dfirdausy on 2024/09/04 09:01
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -24,12 +24,11 @@ 24 24 25 25 In asynchronous routing, you can build your decision model on which the routing needs to make the decision. 26 26 27 -The best practice for setting up your asynchronous routing process is to use one SpEL expression that determines to which offramp queues a messages needs to be routed. The SpEL expression looks as follows: 27 +The best practice for setting up your asynchronous routing process is to use one SpEL expression that determines to which offramp queues a messages needs to be routed. 28 +The SpEL expression looks as follows: 28 28 29 -{{code language="xml"}} 30 - 31 -headers.{technicalnameofproject}\_targetSystem.split(',').![#this.trim()+#root.headers.{technicalnameofproject}_messageType] 32 - 30 +{{code language="xml"}} 31 +headers.{technicalnameofproject}\_targetSystem.split(',').![#this.trim()+#root.headers.{technicalnameofproject}_messageType] 33 33 {{/code}} 34 34 35 35 This SpEL expression does the following things: