Hello everyone, In this post, you will learn How to Call a Method using the Bean Component in Apache Camel. The example has been tested and shared in the post.
Maven Dependencies
<dependency> <groupid>org.apache.camel</groupid> <artifactid>camel-core</artifactid> <version>${camel-version}</version> </dependency>
Service Class
package com.dineshkrish; /** * * @author Dinesh Krishnan * */ public class MyService { public void doSomething(Object message) { System.out.println(message); } }
ExampleProgram
package com.dineshkrish; import org.apache.camel.CamelContext; import org.apache.camel.ProducerTemplate; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.impl.DefaultCamelContext; /** * * @author Dinesh Krishnan * */ public class CallMethodCamel_2 { public static void main(String[] args) throws Exception { // creating a camel context CamelContext context = new DefaultCamelContext(); // adding the route to context context.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { // creating a object MyService service = new MyService(); from("direct:start") .bean(service, "doSomething"); } }); // start the context context.start(); // create a producer and send message ProducerTemplate template = context.createProducerTemplate(); template.sendBody("direct:start", "Your message goes here...."); // stop the context context.stop(); } }
Output
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. Your message goes here....
More from my site

Hello, folks, I am a founder of idineshkrishnan.com. I love open source technologies, If you find my tutorials are useful, please consider making donations to these charities.
No responses yet