Open In App

Spring Boot | How to publish String messages on Apache Kafka

Improve
Improve
Like Article
Like
Save
Share
Report

Apache Kafka is a publish-subscribe messaging system. A messaging queue lets you send messages between processes, applications, and servers. In this article, we will see how to send string messages to Apache Kafka in a spring boot application.

In order to learn how to create a spring boot project, refer to this article.

The string is a sequence of characters. In java, objects of String are immutable which means a constant and cannot be changed once created. And also, java allows explicit typecasting where one type of variable can be forcibly converted into other. For example, the same string message can further be converted into an int or a float if the string consists of only numbers and it needs to be used for some computation. The following steps can be followed in order to publish a string message to Apache Kafka:

  1. Go to spring initializr and create a starter project with following dependencies:
    • Spring Web
    • Spring for Apache Kafka
  2. Open the project in an IDE and sync the dependencies. Now create a new class Controller with the annotation @RestController. This class handles all the RESTful routes.
  3. In this class, create a GET API and initialize KafkaTemplate with parameter as string. The following is the implementation of the class:




    // Java program to implement the
    // controller for the spring
    // application
      
    @RestController
    @RequestMapping("/kafka")
    public class Controller {
      
        @Autowired
        KafkaTemplate<String, String>
            kafkaTemplate;
      
        static final String TOPIC = "gfg";
      
        // Implementing a GET method
        @GetMapping("publish/{message}")
        public String publish_message(
            @PathVariable("message") String message)
        {
            kafkaTemplate.send(TOPIC, message);
            return "Message Published on Kafka !";
        }
    }

    
    

  4. Start zookeeper and Kafka server. Now we need to create a new topic with the name gfg. To do so, open a new command prompt window and change directory to the Kafka directory.
  5. Now create a new topic using the command given below:

    For Mac and Linux: bin/kafka-topics.sh –create –zookeeper localhost:2181 –replication-factor 1 –partitions 1 –topic topic_name

    For Windows: .\bin\windows\kafka-topics.bat –create –zookeeper localhost:2181 –replication-factor 1 –partitions 1 –topic topic_name

  6. Now to see the messages on the Kafka server in the real-time, use the command below:

    For MAC and Linux: bin/kafka-console-consumer.sh –bootstrap-server localhost:9092 –topic topic_name –from-beginning

    For Windows: .\bin\windows\kafka-console-consumer.bat –bootstrap-server localhost:9092 –topic topic_name –from-beginning

  7. Run the application and call the API as:

    localhost:8080/kafka/publish/{your message}

    Note: If a different port has been used, then replace the port with 8080.

Output:

  • Calling the API:

  • Checking the message in real time:



Last Updated : 21 Jun, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads