Available as of Camel 2.4
The class: component binds beans to Camel message exchanges. It works in the same way as the Bean component but instead of looking up beans from a Registry it creates the bean based on the class name.
class:className[?options]
Where className is the fully qualified class name to create and use as bean.
The Class component has no options.
The Class component supports 6 endpoint options which are listed below:
{% raw %}
| Name | Group | Default | Java Type | Description |
|---|---|---|---|---|
beanName | producer |
| Required Sets the name of the bean to invoke | |
method | producer |
| Sets the name of the method to invoke on the bean | |
cache | advanced |
|
| If enabled 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. |
multiParameterArray | advanced |
|
| How to treat the parameters which are passed from the message body; if it is true the message body should be an array of parameters. Note: This option is used internally by Camel and is not intended for end users to use. |
parameters | advanced |
| Used for configuring additional properties on the bean | |
synchronous | advanced |
|
| Sets whether synchronous processing should be strictly used or Camel is allowed to use asynchronous processing (if supported). |
{% endraw %}
You simply use the class component just as the Bean
component but by specifying the fully qualified classname instead.
For example to use the MyFooBean you have to do as follows:
from("direct:start").to("class:org.apache.camel.component.bean.MyFooBean").to("mock:result");You can also specify which method to invoke on the MyFooBean, for
example hello:
from("direct:start").to("class:org.apache.camel.component.bean.MyFooBean?method=hello").to("mock:result");In the endpoint uri you can specify properties to set on the created
instance, for example if it has a setPrefix method:
// Camel 2.17 onwards
from("direct:start")
.to("class:org.apache.camel.component.bean.MyPrefixBean?bean.prefix=Bye")
.to("mock:result");
// Camel 2.16 and older
from("direct:start")
.to("class:org.apache.camel.component.bean.MyPrefixBean?prefix=Bye")
.to("mock:result");And you can also use the # syntax to refer to properties to be looked
up in the Registry.
// Camel 2.17 onwards
from("direct:start")
.to("class:org.apache.camel.component.bean.MyPrefixBean?bean.cool=#foo")
.to("mock:result");
// Camel 2.16 and older
from("direct:start")
.to("class:org.apache.camel.component.bean.MyPrefixBean?cool=#foo")
.to("mock:result");Which will lookup a bean from the Registry with the
id foo and invoke the setCool method on the created instance of the
MyPrefixBean class.
TIP:See more details at the Bean component as the class component works in much the same way.