How can I write Spring XML about multiple inputsakka-camel 2.2.1 route definition using Spring XMLCamel Load balancing example using Mina with Java DSLApache Camel Producer Consumer terminology dillemasSeparate route instances within single Camel contextApache Camel: Spring multicast + processingHow to setBody in camelcontext route from the xml recieved to pojo class?Can not extend SpringBootServletInitializer while using Apache-Camel Spring starterApache Camel: What is the best way to reuse Camel routes from other routes?Spring Boot - Camel how to handle multiple processescamel: Unable to locate Spring NamespaceHandler for XML schema namespace [http://camel.apache.org/schema/spring]
Python π = 1 + (1/2) + (1/3) + (1/4) - (1/5) + (1/6) + (1/7) + (1/8) + (1/9) - (1/10) ...1748 Euler
Is Norway in the Single Market?
Who's behind community AMIs on Amazon EC2?
What does the "きゃ" in "していきゃがらなかった" stand for?
What is the reason behind water not falling from a bucket at the top of loop?
Skipping same old introductions
How to power down external drive safely
What is the difference between "logical equivalence" and "material equivalence"?
"Will flex for food". What does this phrase mean?
Gold Battle KoTH
Does the problem of P vs NP come under the category of Operational Research?
How to get maximum number that newcount can hold?
Does KNN have a loss function?
In Haskell, when using the XStrict language extension, is if short-circuiting?
A conjectural trigonometric identity
Need help identifying how to open this bolt/screw
How do people drown while wearing a life jacket?
Why interlaced CRT scanning wasn't done back and forth?
Why have both: BJT and FET transistors on IC output?
How to set Adobe DC PDF reader as default for ALL pdfs without having to open security preferences every time
Why are Star Wars Rebel Alliance ships named after letters from the Latin alphabet?
Applying for mortgage when living together but only one will be on the mortgage
Word for pulling a punch in karate
Why are prop blades not shaped like household fan blades?
How can I write Spring XML about multiple inputs
akka-camel 2.2.1 route definition using Spring XMLCamel Load balancing example using Mina with Java DSLApache Camel Producer Consumer terminology dillemasSeparate route instances within single Camel contextApache Camel: Spring multicast + processingHow to setBody in camelcontext route from the xml recieved to pojo class?Can not extend SpringBootServletInitializer while using Apache-Camel Spring starterApache Camel: What is the best way to reuse Camel routes from other routes?Spring Boot - Camel how to handle multiple processescamel: Unable to locate Spring NamespaceHandler for XML schema namespace [http://camel.apache.org/schema/spring]
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am implementing mediation module.
This system sends many files to target systems with adding some information.
There are many input sources and output targets.
So, I want to write Spring XML for this process. But I cannot find this solution.
I saw some articles in Jboss community.
https://access.redhat.com/documentation/en-us/red_hat_jboss_fuse/6.3/html/apache_camel_development_guide/basicprinciples-multipleinputs
In this article, there is below definition of java dsl.
from("URI1").to("DestinationUri");
from("URI2").to("DestinationUri");
from("URI3").to("DestinationUri");
Is this code possible in springXML?
Please check my question and reply solution.
Thank you.
apache-camel spring-camel
add a comment |
I am implementing mediation module.
This system sends many files to target systems with adding some information.
There are many input sources and output targets.
So, I want to write Spring XML for this process. But I cannot find this solution.
I saw some articles in Jboss community.
https://access.redhat.com/documentation/en-us/red_hat_jboss_fuse/6.3/html/apache_camel_development_guide/basicprinciples-multipleinputs
In this article, there is below definition of java dsl.
from("URI1").to("DestinationUri");
from("URI2").to("DestinationUri");
from("URI3").to("DestinationUri");
Is this code possible in springXML?
Please check my question and reply solution.
Thank you.
apache-camel spring-camel
add a comment |
I am implementing mediation module.
This system sends many files to target systems with adding some information.
There are many input sources and output targets.
So, I want to write Spring XML for this process. But I cannot find this solution.
I saw some articles in Jboss community.
https://access.redhat.com/documentation/en-us/red_hat_jboss_fuse/6.3/html/apache_camel_development_guide/basicprinciples-multipleinputs
In this article, there is below definition of java dsl.
from("URI1").to("DestinationUri");
from("URI2").to("DestinationUri");
from("URI3").to("DestinationUri");
Is this code possible in springXML?
Please check my question and reply solution.
Thank you.
apache-camel spring-camel
I am implementing mediation module.
This system sends many files to target systems with adding some information.
There are many input sources and output targets.
So, I want to write Spring XML for this process. But I cannot find this solution.
I saw some articles in Jboss community.
https://access.redhat.com/documentation/en-us/red_hat_jboss_fuse/6.3/html/apache_camel_development_guide/basicprinciples-multipleinputs
In this article, there is below definition of java dsl.
from("URI1").to("DestinationUri");
from("URI2").to("DestinationUri");
from("URI3").to("DestinationUri");
Is this code possible in springXML?
Please check my question and reply solution.
Thank you.
apache-camel spring-camel
apache-camel spring-camel
asked Mar 27 at 0:37
이성규이성규
274 bronze badges
274 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You should only have 1 from per route. Having 2+ is deprecated and not recommended. And in Camel 3 we have restricted this to exactly 1 input only.
So use 1 route per input. You can link multiple routes together via direct if you want to call something that is shared among those routes
from a
to direct:shared
from b
to direct:shared
from direct:shared
to foo
Thank you. If we fetch multiple input directory, which component can we select? I am using pollenrich component. Is using this component right?
– 이성규
Mar 28 at 6:44
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55368148%2fhow-can-i-write-spring-xml-about-multiple-inputs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You should only have 1 from per route. Having 2+ is deprecated and not recommended. And in Camel 3 we have restricted this to exactly 1 input only.
So use 1 route per input. You can link multiple routes together via direct if you want to call something that is shared among those routes
from a
to direct:shared
from b
to direct:shared
from direct:shared
to foo
Thank you. If we fetch multiple input directory, which component can we select? I am using pollenrich component. Is using this component right?
– 이성규
Mar 28 at 6:44
add a comment |
You should only have 1 from per route. Having 2+ is deprecated and not recommended. And in Camel 3 we have restricted this to exactly 1 input only.
So use 1 route per input. You can link multiple routes together via direct if you want to call something that is shared among those routes
from a
to direct:shared
from b
to direct:shared
from direct:shared
to foo
Thank you. If we fetch multiple input directory, which component can we select? I am using pollenrich component. Is using this component right?
– 이성규
Mar 28 at 6:44
add a comment |
You should only have 1 from per route. Having 2+ is deprecated and not recommended. And in Camel 3 we have restricted this to exactly 1 input only.
So use 1 route per input. You can link multiple routes together via direct if you want to call something that is shared among those routes
from a
to direct:shared
from b
to direct:shared
from direct:shared
to foo
You should only have 1 from per route. Having 2+ is deprecated and not recommended. And in Camel 3 we have restricted this to exactly 1 input only.
So use 1 route per input. You can link multiple routes together via direct if you want to call something that is shared among those routes
from a
to direct:shared
from b
to direct:shared
from direct:shared
to foo
answered Mar 27 at 9:00
Claus IbsenClaus Ibsen
47.9k7 gold badges37 silver badges54 bronze badges
47.9k7 gold badges37 silver badges54 bronze badges
Thank you. If we fetch multiple input directory, which component can we select? I am using pollenrich component. Is using this component right?
– 이성규
Mar 28 at 6:44
add a comment |
Thank you. If we fetch multiple input directory, which component can we select? I am using pollenrich component. Is using this component right?
– 이성규
Mar 28 at 6:44
Thank you. If we fetch multiple input directory, which component can we select? I am using pollenrich component. Is using this component right?
– 이성규
Mar 28 at 6:44
Thank you. If we fetch multiple input directory, which component can we select? I am using pollenrich component. Is using this component right?
– 이성규
Mar 28 at 6:44
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55368148%2fhow-can-i-write-spring-xml-about-multiple-inputs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown