
java - What exactly is Apache Camel? - Stack Overflow
Jan 13, 2012 · I don't understand what exactly Camel does. If you could give in 101 words an introduction to Camel: What exactly is it? How does it interact with an application written in …
When to use Spring Integration vs. Camel? - Stack Overflow
Jun 14, 2010 · We choose Camel over Spring-Integration because the fluent API is really nice. We actually use it in Spring projects and use Spring to configure part of it. The programming …
What's the difference between "direct:" and to () in Apache Camel?
Jun 9, 2012 · A route is an artifact in Camel, and you could do certain administrative tasks towards it with the Camel API, such as start, stop, add, remove routes dynamically. The "to" …
How to unit test production routes in Apache Camel?
In Camel 2.7 we made it possible to manipulate the route much easier, so you can remove parts, replace parts, etc. Thats the weaving stuff that link talks about. For example to simulate …
How can I invoke a RESTful service through Apache Camel?
Aug 25, 2016 · I am currently using a HTTP method for invoking some URL which will create a JIRA issue. Now I want to use Apache Camel, how can I use that? I need to invoke the …
naming conventions - camel case method names - Stack Overflow
I understand the reason to camel case variable names, but I've always wondered why you would camel case a method name? why is it toString() and not ToString()? What purpose does it serve?
How to create YAML DSL route in Apache Camel to query LDAP …
Apr 21, 2023 · 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 …
Parallel processing threads on split in Apache Camel
Aug 13, 2019 · I am trying to split an incoming exchange in route based on some logic. Every split part would connect to an ssh server in a bean. from ("seda:compression") .routeId …
Camel bean binding: set parameter from variable - Stack Overflow
May 15, 2018 · Given a bean method that takes a String parameter: public void emptyDirectory(String directory) { // code to empty give directory if it exists } how do i pass this …
camel: how can i send to an endpoint asynchronously
Aug 20, 2018 · How can I send a message to an endpoint without waiting for that endpoint's route to be process (that is, my route should just dispatch the message and finish)?