Skip to content

Commit 12932f7

Browse files
committed
Fix Missing Links in Docs
1 parent 2f8b042 commit 12932f7

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

src/reference/asciidoc/changes-since-1.0.adoc

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
This section covers the changes made from version 2.4 to version 2.5.
55
For changes in earlier version, see <<history>>.
66

7-
Also see <<new-in-sik>>.
8-
97
[[x25-factory-listeners]]
108
==== Consumer/Producer Factory Changes
119

@@ -179,8 +177,6 @@ See <<streams-spring>> for more information.
179177

180178
This section covers the changes made from version 2.2 to version 2.3.
181179

182-
Also see <<new-in-sik>>.
183-
184180
==== Tips, Tricks and Examples
185181

186182
A new chapter <<tips-n-tricks>> has been added.
@@ -285,7 +281,7 @@ See <<streams-header-enricher>> for more information.
285281

286282
The `MessagingTransformer` has been provided.
287283
This allows a Kafka streams topology to interact with a spring-messaging component, such as a Spring Integration flow.
288-
See <<streams-messaging>> and <<streams-integration>> for more information.
284+
See <<streams-messaging>> and See https://docs.spring.io/spring-integration/docs/current/reference/html/kafka.html#streams-integration[[Calling a Spring Integration Flow from a `KStream`]] for more information.
289285

290286
==== JSON Component Changes
291287

@@ -445,10 +441,6 @@ This change allows proper fencing of zombies, https://www.confluent.io/blog/tran
445441

446442
This version requires the 1.0.0 `kafka-clients` or higher.
447443

448-
NOTE: The 1.1.x client is supported with version 2.1.5, but you need to override dependencies as described in <<deps-for-11x>>.
449-
450-
// TODO: No topic marked deps-for-11x exists in any of the files in the directory that contains this file.
451-
452444
The 1.1.x client is supported natively in version 2.2.
453445

454446
==== JSON Improvements

src/reference/asciidoc/kafka.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4036,7 +4036,7 @@ Refer to the https://github.com/spring-projects/spring-retry[spring-retry] proje
40364036
[[messaging-message-conversion]]
40374037
===== Spring Messaging Message Conversion
40384038

4039-
Although the `Serializer` and `Deserializer` API is quite simple and flexible from the low-level Kafka `Consumer` and `Producer` perspective, you might need more flexibility at the Spring Messaging level, when using either `@KafkaListener` or <<si-kafka,Spring Integration>>.
4039+
Although the `Serializer` and `Deserializer` API is quite simple and flexible from the low-level Kafka `Consumer` and `Producer` perspective, you might need more flexibility at the Spring Messaging level, when using either `@KafkaListener` or https://docs.spring.io/spring-integration/docs/current/reference/html/kafka.html#kafka[[Spring Integration's Apache Kafka Support].
40404040
To let you easily convert to and from `org.springframework.messaging.Message`, Spring for Apache Kafka provides a `MessageConverter` abstraction with the `MessagingMessageConverter` implementation and its `JsonMessageConverter` (and subclasses) customization.
40414041
You can inject the `MessageConverter` into a `KafkaTemplate` instance directly and by using `AbstractKafkaListenerContainerFactory` bean definition for the `@KafkaListener.containerFactory()` property.
40424042
The following example shows how to do so:
@@ -4211,7 +4211,7 @@ consumerProps.put(ErrorHandlingDeserializer.VALUE_FUNCTION, FailedFooProvider.cl
42114211
===== Payload Conversion with Batch Listeners
42124212

42134213
You can also use a `JsonMessageConverter` within a `BatchMessagingMessageConverter` to convert batch messages when you use a batch listener container factory.
4214-
See <<serdes>> and <<message-conversion>> for more information.
4214+
See <<serdes>> and <<messaging-message-conversion>> for more information.
42154215

42164216
By default, the type for the conversion is inferred from the listener argument.
42174217
If you configure the `JsonMessageConverter` with a `DefaultJackson2TypeMapper` that has its `TypePrecedence` set to `TYPE_ID` (instead of the default `INFERRED`), the converter uses the type information in headers (if present) instead.

src/reference/asciidoc/streams.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ public interface MessagingFunction {
278278

279279
Spring Integration automatically provides an implementation using its `GatewayProxyFactoryBean`.
280280
It also requires a `MessagingMessageConverter` to convert the key, value and metadata (including headers) to/from a Spring Messaging `Message<?>`.
281-
See <<streams-integration>> for more information.
281+
See https://docs.spring.io/spring-integration/docs/current/reference/html/kafka.html#streams-integration[[Calling a Spring Integration Flow from a `KStream`]] for more information.
282282

283283
[[streams-deser-recovery]]
284284
==== Recovery from Deserialization Exceptions

0 commit comments

Comments
 (0)