<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Integration of pure Java Camel route into Talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Integration-of-pure-Java-Camel-route-into-Talend/m-p/2541382#M149329</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Talend Routes are based on Apache Camel, but Talend does not support importing and running a standalone Camel RouteBuilder JAR directly inside a Talend Route.&lt;/P&gt;&lt;P&gt;Supported approach:&lt;/P&gt;&lt;P&gt;Package your custom logic as a Java class or JAR.&lt;/P&gt;&lt;P&gt;Add it to Talend as a module.&lt;/P&gt;&lt;P&gt;Invoke it from a Talend Route using components such as cProcessor, cBean, or cInvoke.&lt;/P&gt;&lt;P&gt;Talend remains responsible for managing the Camel context and route lifecycle.&lt;/P&gt;&lt;P&gt;Not supported:&lt;/P&gt;&lt;P&gt;Deploying a standalone Camel route that defines its own REST configuration (for example netty-http) and expecting Talend to merge or manage it automatically.&lt;/P&gt;&lt;P&gt;Best practice:&lt;BR /&gt;Use Talend Route components for routing and orchestration, and delegate complex business logic to external Java code. Deploy fully custom Camel services outside Talend if independent lifecycle management is required.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gourav&lt;/P&gt;</description>
    <pubDate>Fri, 23 Jan 2026 09:21:25 GMT</pubDate>
    <dc:creator>gouravdubey5</dc:creator>
    <dc:date>2026-01-23T09:21:25Z</dc:date>
    <item>
      <title>Integration of pure Java Camel route into Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Integration-of-pure-Java-Camel-route-into-Talend/m-p/2524806#M147795</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;is there a way to write an Apache Camel route completely in pure Java and then integrate the jar into a Talend route?&lt;/P&gt;&lt;P&gt;For example, this would be for the code I would like to include:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;@Component&lt;/SPAN&gt;(&lt;SPAN&gt;"myroute"&lt;/SPAN&gt;)&lt;BR /&gt;&lt;SPAN&gt;public class &lt;/SPAN&gt;MyRouteBuilder &lt;SPAN&gt;extends &lt;/SPAN&gt;RouteBuilder {&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;@Override&lt;BR /&gt;&lt;/SPAN&gt;    &lt;SPAN&gt;public void &lt;/SPAN&gt;&lt;SPAN&gt;configure&lt;/SPAN&gt;() {&lt;BR /&gt;&lt;BR /&gt;                restConfiguration().component(&lt;SPAN&gt;"netty-http"&lt;/SPAN&gt;).port(&lt;SPAN&gt;8080&lt;/SPAN&gt;);&lt;BR /&gt;&lt;BR /&gt;                rest(&lt;SPAN&gt;"/api/items"&lt;/SPAN&gt;)&lt;BR /&gt;                    .patch(&lt;SPAN&gt;"/{id}"&lt;/SPAN&gt;)&lt;BR /&gt;                    .consumes(&lt;SPAN&gt;"application/json"&lt;/SPAN&gt;)&lt;BR /&gt;                    .produces(&lt;SPAN&gt;"application/json"&lt;/SPAN&gt;)&lt;BR /&gt;                    .to(&lt;SPAN&gt;"direct:patchItem"&lt;/SPAN&gt;);&lt;BR /&gt;&lt;BR /&gt;                from(&lt;SPAN&gt;"direct:patchItem"&lt;/SPAN&gt;)&lt;BR /&gt;                    .log(&lt;SPAN&gt;"PATCH request for item ${header.id} with body: ${body}"&lt;/SPAN&gt;)&lt;BR /&gt;                    &lt;SPAN&gt;// Hier kannst du die Patch-Logik implementieren&lt;BR /&gt;&lt;/SPAN&gt;                    .setBody(simple(&lt;SPAN&gt;"{ &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;status&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;updated&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;id&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;${header.id}&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt; }"&lt;/SPAN&gt;))&lt;BR /&gt;                        .to(&lt;SPAN&gt;"file:output?fileName=items.txt"&lt;/SPAN&gt;);&lt;BR /&gt;            }&lt;BR /&gt;        }&lt;/PRE&gt;&lt;P&gt;Thanks for any suggestions !&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 21 Jul 2025 10:29:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Integration-of-pure-Java-Camel-route-into-Talend/m-p/2524806#M147795</guid>
      <dc:creator>RLütkenhaus</dc:creator>
      <dc:date>2025-07-21T10:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: Integration of pure Java Camel route into Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Integration-of-pure-Java-Camel-route-into-Talend/m-p/2541382#M149329</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Talend Routes are based on Apache Camel, but Talend does not support importing and running a standalone Camel RouteBuilder JAR directly inside a Talend Route.&lt;/P&gt;&lt;P&gt;Supported approach:&lt;/P&gt;&lt;P&gt;Package your custom logic as a Java class or JAR.&lt;/P&gt;&lt;P&gt;Add it to Talend as a module.&lt;/P&gt;&lt;P&gt;Invoke it from a Talend Route using components such as cProcessor, cBean, or cInvoke.&lt;/P&gt;&lt;P&gt;Talend remains responsible for managing the Camel context and route lifecycle.&lt;/P&gt;&lt;P&gt;Not supported:&lt;/P&gt;&lt;P&gt;Deploying a standalone Camel route that defines its own REST configuration (for example netty-http) and expecting Talend to merge or manage it automatically.&lt;/P&gt;&lt;P&gt;Best practice:&lt;BR /&gt;Use Talend Route components for routing and orchestration, and delegate complex business logic to external Java code. Deploy fully custom Camel services outside Talend if independent lifecycle management is required.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gourav&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jan 2026 09:21:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Integration-of-pure-Java-Camel-route-into-Talend/m-p/2541382#M149329</guid>
      <dc:creator>gouravdubey5</dc:creator>
      <dc:date>2026-01-23T09:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Integration of pure Java Camel route into Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Integration-of-pure-Java-Camel-route-into-Talend/m-p/2541503#M149337</link>
      <description>&lt;P&gt;Hello Gourav,&lt;/P&gt;&lt;P&gt;thank you very much for your reply.&lt;/P&gt;&lt;P&gt;We are now taking the approach of programming Camel routes directly in Java and executing the bundles in Karaf without using Talend..&lt;BR /&gt;This is a better option for us.&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2026 07:14:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Integration-of-pure-Java-Camel-route-into-Talend/m-p/2541503#M149337</guid>
      <dc:creator>RLütkenhaus</dc:creator>
      <dc:date>2026-01-26T07:14:11Z</dc:date>
    </item>
  </channel>
</rss>

