From 0401ba842957baebdc575903cb37a8cdf710563e Mon Sep 17 00:00:00 2001 From: Kazuki Shimizu Date: Mon, 9 Jan 2017 05:49:22 +0900 Subject: [PATCH] Fix heading level for kafka docs Closes gh-7915 --- .../src/main/asciidoc/spring-boot-features.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 3806500784..b825b3fc3d 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -4698,7 +4698,7 @@ for more of the supported options. [[boot-features-kafka-sending-a-message]] -=== Sending a Message +==== Sending a Message Spring's `KafkaTemplate` is auto-configured and you can autowire them directly in your own beans: @@ -4722,7 +4722,7 @@ public class MyBean { [[boot-features-kafka-receiving-a-message]] -=== Receiving a Message +==== Receiving a Message When the Apache Kafka infrastructure is present, any bean can be annotated with `@KafkaListener` to create a listener endpoint. If no `KafkaListenerContainerFactory` has been defined, a default one is configured automatically with keys defined in @@ -4746,7 +4746,7 @@ The following component creates a listener endpoint on the `someTopic` topic: [[boot-features-kafka-extra-props]] -=== Additional Kafka Properties +==== Additional Kafka Properties The properties supported by auto configuration are shown in <>. Note that these properties (hyphenated or camelCase) map directly to the Apache Kafka dotted properties for the most part, refer to the Apache