Skip to content

Commit a2d0a69

Browse files
garyrussellartembilan
authored andcommitted
GH-1753: Fix Project Name in Docs
Resolves #1753
1 parent 9545893 commit a2d0a69

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

spring-kafka-docs/src/main/asciidoc/kafka.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3823,7 +3823,7 @@ Also, you can pass in `Supplier<Serializer>` or `Supplier<Deserializer>` instanc
38233823
[[string-serde]]
38243824
===== String serialization
38253825

3826-
Since version 2.5, Spring Kafka provides `ToStringSerializer` and `ParseStringDeserializer` classes that use String representation of entities.
3826+
Since version 2.5, Spring for Apache Kafka provides `ToStringSerializer` and `ParseStringDeserializer` classes that use String representation of entities.
38273827
They rely on methods `toString` and some `Function<String>` or `BiFunction<String, Headers>` to parse the String and populate properties of an instance.
38283828
Usually, this would invoke some static method on the class, such as `parse`:
38293829

spring-kafka-docs/src/main/asciidoc/quick-tour.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
=== Quick Tour
33

44
Prerequisites: You must install and run Apache Kafka.
5-
Then you must put the spring-kafka JAR and all of its dependencies on your class path.
5+
Then you must put the Spring for Apache Kafka (`spring-kafka`) JAR and all of its dependencies on your class path.
66
The easiest way to do that is to declare a dependency in your build tool.
77

88
If you are not using Spring Boot, declare the `spring-kafka` jar as a dependency in your project.

spring-kafka-docs/src/main/asciidoc/retrytopic.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NOTE: You can have separate `ListenerContainerFactory` instances for the main an
4949

5050
===== Using the `@RetryableTopic` annotation
5151

52-
To configure the retry topic and dlt for a `@KafkaListener` annotated method, you just have to add the `@RetryableTopic` annotation to it and Spring Kafka will bootstrap all the necessary topics and consumers with the default configurations.
52+
To configure the retry topic and dlt for a `@KafkaListener` annotated method, you just have to add the `@RetryableTopic` annotation to it and Spring for Apache Kafka will bootstrap all the necessary topics and consumers with the default configurations.
5353

5454
====
5555
[source, java]

spring-kafka-docs/src/main/asciidoc/streams.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[[streams-kafka-streams]]
2-
=== Kafka Streams Support
2+
=== Apache Kafka Streams Support
33

44
Starting with version 1.1.4, Spring for Apache Kafka provides first-class support for https://kafka.apache.org/documentation/streams[Kafka Streams].
55
To use it from a Spring application, the `kafka-streams` jar must be present on classpath.
6-
It is an optional dependency of the `spring-kafka` project and is not downloaded transitively.
6+
It is an optional dependency of the Spring for Apache Kafka project and is not downloaded transitively.
77

88
==== Basics
99

@@ -157,7 +157,7 @@ streamsBuilderFactoryBean.setListener(new KafkaStreamsMicrometerListener(meterRe
157157
[[serde]]
158158
==== Streams JSON Serialization and Deserialization
159159

160-
For serializing and deserializing data when reading or writing to topics or state stores in JSON format, Spring Kafka provides a `JsonSerde` implementation that uses JSON, delegating to the `JsonSerializer` and `JsonDeserializer` described in <<serdes>>.
160+
For serializing and deserializing data when reading or writing to topics or state stores in JSON format, Spring for Apache Kafka provides a `JsonSerde` implementation that uses JSON, delegating to the `JsonSerializer` and `JsonDeserializer` described in <<serdes>>.
161161
The `JsonSerde` implementation provides the same configuration options through its constructor (target type or `ObjectMapper`).
162162
In the following example, we use the `JsonSerde` to serialize and deserialize the `Cat` payload of a Kafka stream (the `JsonSerde` can be used in a similar fashion wherever an instance is required):
163163

0 commit comments

Comments
 (0)