Fuse 6 is no longer supported
As of February 2025, Red Hat Fuse 6 is no longer supported. If you are using Fuse 6, please upgrade to Red Hat build of Apache Camel.Chapter 9. Bean
Bean Component Copy linkLink copied to clipboard!
Copy linkLink copied to clipboard!
The bean: component binds beans to Apache Camel message exchanges.
URI format Copy linkLink copied to clipboard!
Copy linkLink copied to clipboard!
bean:beanID[?options]
bean:beanID[?options]
Where beanID can be any string which is used to lookup look up the bean in the Registry
Options Copy linkLink copied to clipboard!
Copy linkLink copied to clipboard!
Name | Type | Default | Description |
---|---|---|---|
method
|
String
|
null
|
The method name from the bean that will be invoked. If not provided, Camel will try to determine the method itself. In case of ambiguity an exception will be thrown. See Bean Binding for more details. |
cache
|
boolean
|
false
|
If enabled, Apache Camel will cache the result of the first Registry look-up. Cache can be enabled if the bean in the Registry is defined as a singleton scope. |
You can append query options to the URI in the following format,
?option=value&option=value&...
Using Copy linkLink copied to clipboard!
Copy linkLink copied to clipboard!
The object instance that is used to consume messages must be explicitly registered with the Registry. For example, if you are using Spring you must define the bean in the Spring configuration,
spring.xml
; or if you don't use Spring, put the bean in JNDI.
Once an endpoint has been registered, you can build routes that use it to process exchanges.
A bean: endpoint cannot be defined as the input to the route; i.e. you cannot consume from it, you can only route from some inbound message Endpoint to the bean endpoint as output. So consider using a direct: or queue: endpoint as the input.
You can use the
createProxy()
methods on ProxyHelper to create a proxy that will generate BeanExchanges and send them to any endpoint:
Endpoint endpoint = camelContext.getEndpoint("direct:hello"); ISay proxy = ProxyHelper.createProxy(endpoint, ISay.class); String rc = proxy.say(); assertEquals("Good Bye!", rc);
Endpoint endpoint = camelContext.getEndpoint("direct:hello");
ISay proxy = ProxyHelper.createProxy(endpoint, ISay.class);
String rc = proxy.say();
assertEquals("Good Bye!", rc);
And the same route using Spring DSL:
<route> <from uri="direct:hello"> <to uri="bean:bye"/> </route>
<route>
<from uri="direct:hello">
<to uri="bean:bye"/>
</route>
Bean as endpoint Copy linkLink copied to clipboard!
Copy linkLink copied to clipboard!
Apache Camel also supports invoking Bean as an Endpoint. In the route below:
What happens is that when the exchange is routed to the
myBean
, Apache Camel will use the Bean Binding to invoke the bean. The source for the bean is just a plain POJO:
Apache Camel will use Bean Binding to invoke the
sayHello
method, by converting the Exchange's In body to the String
type and storing the output of the method on the Exchange Out body.
Java DSL bean syntax Copy linkLink copied to clipboard!
Copy linkLink copied to clipboard!
Java DSL comes with syntactic sugar for the Bean component. Instead of specifying the bean explicitly as the endpoint (i.e.
to("bean:beanName")
) you can use the following syntax:
Instead of passing name of the reference to the bean (so that Camel will lookup for it in the registry), you can specify the bean itself:
Bean Binding Copy linkLink copied to clipboard!
Copy linkLink copied to clipboard!
How bean methods to be invoked are chosen (if they are not specified explicitly through the method parameter) and how parameter values are constructed from the Message are all defined by the Bean Binding mechanism which is used throughout all of the various Bean Integration mechanisms in Apache Camel.
- Class component