Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.
Class ComponentAvailable 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. URI formatclass:className[?options] Where className is the fully qualified class name to create and use as bean. Options
You can append query options to the URI in the following format, UsingYou simply use the class component just as the Bean component but by specifying the fully qualified classname instead. from("direct:start").to("class:org.apache.camel.component.bean.MyFooBean").to("mock:result"); You can also specify which method to invoke on the from("direct:start").to("class:org.apache.camel.component.bean.MyFooBean?method=hello").to("mock:result"); Setting properties on the created instanceIn the endpoint uri you can specify properties to set on the created instance, for example if it has a // 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 // 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 See more See more details at the Bean component as the class component works in much the same way. |