@@ -190,7 +190,7 @@ To enter the Kafka UI, open your browser and go to `http://localhost:8081`
190
190
# # Spring Boot Application
191
191
192
192
The 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.
194
194
195
195
To build your own application using the Reactive Commons API, you need to include a dependency to Reactive Commons.
196
196
@@ -210,7 +210,7 @@ dependencies {
210
210
211
211
Also you need to include the name for your app in the `application.properties`, it is important because this value will
212
212
be used
213
- to name the application queues inside RabbitMQ :
213
+ to name the application group-id inside Kafka :
214
214
215
215
` ` ` properties
216
216
spring.application.name=MyAppName
@@ -224,7 +224,7 @@ spring:
224
224
name: MyAppName
225
225
` ` `
226
226
227
- You can set the RabbitMQ connection properties through spring boot with
227
+ You can set the Kafka connection properties through spring boot with
228
228
the [`spring.kafka.*` properties](https://docs.spring.io/spring-boot/docs/current/reference/html/application-properties.html)
229
229
230
230
` ` ` yaml
@@ -235,7 +235,7 @@ spring:
235
235
236
236
You can also set it in runtime for example from a secret, so you can create the `KafkaProperties` bean like :
237
237
238
- ` ` ` java title="org.reactivecommons.async.rabbit .config.RabbitProperties "
238
+ ` ` ` java title="org.reactivecommons.async.kafka .config.KafkaProperties "
239
239
240
240
@Configuration
241
241
public class MyKafkaConfig {
0 commit comments