Details
-
New Feature
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
Unknown
Description
So you can do
from("xxx").routeId("new-order").prefixId("xxx")
.to("aaa")
.to("bbb").id("order")
from("xxx2").routeId("new-order").prefixId("zzz")
.to("aaa")
.to("bbb").id("order")
.to("ccc")
Then every node in the routes are prefixed with "xxx" or "zzz". This allows to avoid problems with ID duplicates, and also group together IDs as the use the same prefix.
The prefix is applied for
- route id
- explicit set id
- auto generated ids
This means every ID from the route is prefixed.
Attachments
Issue Links
- is related to
-
CAMEL-18771 camel-core - Route template with hardcoded node IDs - Allow to specify prefix
-
- Resolved
-