Inheritance hierarchies in Jackson

We will look at how class hierarchies in Jackson works.  We will take an example of building a Notification Service Pojo to demonstrate this. Below is the package/class diagram for…

Read Full Recipe
45 views 1:02 am 0 Comments

Kafka Interview Questions

Here is a list of top Kafka interview question based on my exposure to Apache Kafka Kafka Basics What is Apache KafkaWhat are topics and partitions What are various components of…

Read Full Recipe
94 views 9:58 am 0 Comments

Import SSL Certificates in trust store

First download certificate in java file [java] echo -n | openssl s_client -servername <hostname> -connect <hostname>:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > /tmp/key.cert[/java] Import it using keytool command [java]keytool…

Read Full Recipe
37 views 7:47 pm 0 Comments