|
- java - What exactly is Apache Camel? - Stack Overflow
Apache Camel picks up messages using 'Camel based Component' of the 'from' system and drops them using the 'Camel based Component' of the 'to' system A message may route to multiple systems, but everywhere they have to go through 'Camel based Components' to travel between 'Apache Camel's underlying transport mechanism' and the system
- Apache Camel with IBM MQ - Stack Overflow
I have extensive use of IBM MQ's with camel There is no issue using both together I will paste a sample configuration from one of my spring context files leveraging a camel Jms Endpoint, A spring connection factory, and an IBM MQ definition
- When to use Spring Integration vs. Camel? - Stack Overflow
Another good thing in a Spring application with Spring integration respect to use Apache Camel is that with Spring integration, you can use only one Application Context Remember that the Camel Context is a Spring context if you have the chance of use a new Spring version, I suggest to use Spring Integration Java DSL for configuration
- camel: how can i send to an endpoint asynchronously
Is used to set the Java ExecutorService Camel will by default provide a ScheduledExecutorService with 5 thread in the pool asyncSend: Future: Is used to send an async exchange to a Camel Endpoint Camel will imeddiately return control to the caller thread after the task has been submitted to the executor service
- How to create YAML DSL route in Apache Camel to query LDAP properties . . .
Just a heads up that a fellow Camel developer have looked a bit into this, and it appears at first sight to be Spring Boot starting the ldap bean too eager before those properties are set And for the url, then the bean is expected an array list, so the yaml should reflect that –
- Camel Custom Component - Stack Overflow
This is to leverage the camel component user developer to use their name whatever they want I understand their should be a file with name camelCustomComponent which will have the Custom Component's class name
- naming conventions - camel case method names - Stack Overflow
Since camel cases capitalizes the first letter of each word to substitute spaces, we are left with the challenge of how to differentiate a capitalized title, like we would in English for a proper noun As a solution to this, the first word in a camel case identifier is capitalized to indicate the title or identifier is capitalized
- Apache Camel - Triggering a task on startup to run only once
We would like to trigger an initialize method on a singleton bean after Spring finished doing its thing and Camel has finished building all routes We cant call the method at class creation time as it has dynamic linkings to other classes that it picks up from the @Component spring annotation and we dont know when if these classes have been
|
|
|