Introduction

  • Apache Kafka allows applications to exchange messages at scale
  • Spring Cloud Stream is a framework that simplifies the integration of Kafka into our message-driven applications
  • Conventionally, Kafka is used with the Avro message format, supported by a schema registry

In this tutorial, we’ll use the Confluent Schema Registry. To integrate with Confluent Schema Registry we’ll try both:

  • Spring’s implementation
  • Confluent’s native libraries

Examples

Resources

  • TODO