Bean BindingBean Binding in Camel defines both which methods are invoked and also how the Message is converted into the parameters of the method when it is invoked. Choosing the method to invokeThe binding of a Camel Message to a bean method call can occur in different ways, in the following order of importance:
In cases where Camel cannot choose a method to invoke, an By default the return value is set on the outbound message body. Parameter bindingWhen a method has been chosen for invocation, Camel will bind to the parameters of the method. The following Camel-specific types are automatically bound:
So, if you declare any of these types, they will be provided by Camel. Note that What is most interesting is that Camel will also try to bind the body of the Exchange to the first parameter of the method signature (albeit not of any of the types above). So if, for instance, we declare a parameter as Let's review some examples: Below is a simple method with a body binding. Camel will bind the IN body to the In the following sample we got one of the automatically-bound types as well - for instance, a We can use Exchange as well: You can also have multiple types: And imagine you use a Pojo to handle a given custom exception Notice that we can bind to it even if we use a sub type of So what about headers and other stuff? Well now it gets a bit tricky - so we can use annotations to help us, or specify the binding in the method name option. Binding AnnotationsYou can use the Parameter Binding Annotations to customize how parameter values are created from the Message ExamplesFor example, a Bean such as: Or the Exchange example. Notice that the return type must be void when there is only a single parameter of the type @HandlerYou can mark a method in your bean with the @Handler annotation to indicate that this method should be used for Bean Binding. Parameter binding using method optionAvailable as of Camel 2.9 Camel uses the following rules to determine if it's a parameter value in the method option
Any other value is consider to be a type declaration instead - see the next section about specifying types for overloaded methods. When invoking a Bean you can instruct Camel to invoke a specific method by providing the method name: Here we tell Camel to invoke the doSomething method - Camel handles the parameters' binding. Now suppose the method has 2 parameters, and the 2nd parameter is a boolean where we want to pass in a true value: This is now possible in Camel 2.9 onwards: In the example above, we defined the first parameter using the wild card symbol *, which tells Camel to bind this parameter to any type, and let Camel figure this out. The 2nd parameter has a fixed value of The syntax of the parameters is using the Simple expression language so we have to use ${ } placeholders in the body to refer to the message body. If you want to pass in a Specifying Besides the message body, you can pass in the message headers as a You can also pass in other fixed values besides booleans. For example, you can pass in a String and an integer: In the example above, we invoke the echo method with two parameters. The first has the content 'World' (without quotes), and the 2nd has the value of 5. Having the power of the Simple language allows us to bind to message headers and other values such as: You can also use the OGNL support of the Simple expression language. Now suppose the message body is an object which has a method named Instead of using Using type qualifiers to select among overloaded methodsAvailable as of Camel 2.8 If you have a Bean with overloaded methods, you can now specify parameter types in the method name so Camel can match the method you intend to use. MyBean Then the Invoke 2 parameter method We can also use a Invoke 2 parameter method using wildcard By default Camel will match the type name using the simple name, e.g. any leading package name will be disregarded. However if you want to match using the FQN, then specify the FQN type and Camel will leverage that. So if you have a Camel currently only supports either specifying parameter binding or type per parameter in the method name option. You cannot specify both at the same time, such as This may change in the future. |