Issue
I am a junior programmer in banking. I want to make a microservice system that get data from kafka and processes it. after that, save to database and send final data to client app. What technology can i use? I plan to use spring bacth and kafka. Can the technology be implemented in my project or is there a better alternative?
Solution
To process data from a Kafka topic I recommend you to use Kafka Streams API, especially Spring Kafka Streams.
And to store the data in a database, you should use a Kafka Sink Connector.
This approach is very common and easy if your company has a Kafka ecosystem.
Answered By - Felipe Tapia
Answer Checked By - Marilyn (JavaFixing Volunteer)