Category Archives: Java - Page 4

Camel: Access incoming headers

In HTTP requests (and other requests or messages) you usually get a payload and a bunch of headers. In Camel you can find the payload in the “body” variable like this:

1public class MyRoute extends RouteBuilder {
2 
3    @Override
4    public void configure() throws Exception {
5           from("timer:mytimer?repeatCount=1")
6                  .to("https://www.google.com")
7                  .log("${body}");
8    }
9}

So, how do you access the headers? There is another variable for this called “in” and it can be used like this:

01public class MyRoute extends RouteBuilder {
02 
03    @Override
04    public void configure() throws Exception {
05           from("timer:mytimer?repeatCount=1")
06                  .to("https://www.google.com")
07                  .log("${in.headers}") // Log all incoming  headers
08                  .log("${in.headers.Content-Type}"); // Log a specific header
09    }
10}

Tested on Ubuntu 20.04.4 LTS, Apache Camel 3.20, Minikube v1.29.0 (Camel-K) and Java 1.8.0_352

Camel-K: handle self-signed server certificates as a client

Companies sometimes use self-signed certificates internally in their systems. When building a Camel-K application we need to tell Camel to trust those certificates. I’m here going to show one solution in Java for this, using a truststore.

MyHTTPClient.java

01import org.apache.camel.builder.RouteBuilder;
02import org.apache.camel.support.jsse.*;
03 
04public class MyHTTPClient extends RouteBuilder {
05 
06    @Override
07    public void configure() throws Exception {
08        registerSslContextParameter(); // 4.
09 
10        from("timer:mytimer?repeatCount=1")
11            .to("https://my.server.com/person?
12                       sslContextParameters=#mySSLContextParameters") // 5.
13            .log("${body}");
14    }
15 
16    private void registerSslContextParameter() throws Exception { // 1.
17        KeyStoreParameters tsp = new KeyStoreParameters();
18        tsp.setResource("/etc/ssl/truststore.jks"); // 2.
19        tsp.setPassword("password");
20 
21        TrustManagersParameters tmp = new TrustManagersParameters();
22        tmp.setKeyStore(tsp);
23 
24        SSLContextParameters sslContextParameters = new SSLContextParameters();
25        sslContextParameters.setTrustManagers(tmp);
26 
27        this.getContext()
28            .getRegistry()
29                 .bind("mySSLContextParameters", sslContextParameters); // 3.
30    }
31}

The important parts:

  1. We need a place to create our SSL context – I like to put it in a separate function
  2. Path to the truststore that contain the self-signed certificate
  3. Register our new SSL context in the Camel register
  4. Call our function to set the new SSL context before our Camel flow
  5. Now we need to tell the Camel HTTP-component to use our new SSL context via the components url parameters

Run parameters

1kamel run --resource file:truststore.jks@/etc/ssl/truststore.jks MyHTTPClient.java

Lastly we need to import the truststore into the Camle-K pod. Note that we place the truststore in /etc/ssl/ which is the same as above path (bullet point 2)

Tested on Apache Camel 3.19.0, Minikube v1.29.0 in Ubuntu 20.04 and Java 1.8.0_352

Camel + SpringBoot: How to use custom properties in routes

Spring and Camel makes this quite easy (same solution can be used in Camel-K too). Here is an example of the use of custom property in a route

appilcation.properties

1# Greeting
2greeting = Hello World
3 
4# Timer
5timer.period = 2000

Example route with the above properties

1from("timer:hello?period={{timer.period}}")
2     .log("{{greeting}}");

The route will now print out “Hello World” every 2 seconds

Tested on Apache Camel 3.20.0, SpringBoot 2.7.6, Java 11.0.18 and Ubuntu 20.04.4 LTS