Basic concepts in Apache Kafka

To work with Apache Kafka, you need to understand some basic concepts about: Producer Consumer Broker Cluster Topic Topic Partitions Partition Offset Consumer Group Producer Producers are applications that produce data and send data to Apache Kafka Server. This data will be formatted messages, sent… Read More

Trait in RAML

Trait in RAML is used to define the same elements in different request URIs so that they can be reused. It’s like common class, common method in Java! For example, I have 2 request URIs with the following definitions:

In these two requests, the… Read More

Import RAML into Postman

After defining API specs using RAML file, we can generate code to implement these APIs using Spring framework and also import it into Postman for testing. In this tutorial, I will show you how to import RAML into Postman! I will use the API specs… Read More