@@ -190,7 +190,7 @@ To enter the Kafka UI, open your browser and go to `http://localhost:8081`
190190# # Spring Boot Application
191191
192192The Spring Boot sample publishes and consumes messages with the `DomainEventBus`. This application illustrates how to
193- configure Reactive Commons using RabbitMQ in a Spring Boot environment.
193+ configure Reactive Commons using Kafka in a Spring Boot environment.
194194
195195To build your own application using the Reactive Commons API, you need to include a dependency to Reactive Commons.
196196
@@ -210,7 +210,7 @@ dependencies {
210210
211211Also you need to include the name for your app in the `application.properties`, it is important because this value will
212212be used
213- to name the application queues inside RabbitMQ :
213+ to name the application group-id inside Kafka :
214214
215215` ` ` properties
216216spring.application.name=MyAppName
@@ -224,7 +224,7 @@ spring:
224224 name: MyAppName
225225` ` `
226226
227- You can set the RabbitMQ connection properties through spring boot with
227+ You can set the Kafka connection properties through spring boot with
228228the [`spring.kafka.*` properties](https://docs.spring.io/spring-boot/docs/current/reference/html/application-properties.html)
229229
230230` ` ` yaml
@@ -235,7 +235,7 @@ spring:
235235
236236You can also set it in runtime for example from a secret, so you can create the `KafkaProperties` bean like :
237237
238- ` ` ` java title="org.reactivecommons.async.rabbit .config.RabbitProperties "
238+ ` ` ` java title="org.reactivecommons.async.kafka .config.KafkaProperties "
239239
240240@Configuration
241241public class MyKafkaConfig {
0 commit comments