Skip to content

Commit e718ac0

Browse files
committed
Fix Missing Links in Docs
1 parent a58063c commit e718ac0

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
@@ -50,8 +50,6 @@ See <<producer-factory>> for more information.
5050
This section covers the changes made from version 2.4 to version 2.5.
5151
For changes in earlier version, see <<history>>.
5252

53-
Also see <<new-in-sik>>.
54-
5553
[[x25-factory-listeners]]
5654
==== Consumer/Producer Factory Changes
5755

@@ -225,8 +223,6 @@ See <<streams-spring>> for more information.
225223

226224
This section covers the changes made from version 2.2 to version 2.3.
227225

228-
Also see <<new-in-sik>>.
229-
230226
==== Tips, Tricks and Examples
231227

232228
A new chapter <<tips-n-tricks>> has been added.
@@ -331,7 +327,7 @@ See <<streams-header-enricher>> for more information.
331327

332328
The `MessagingTransformer` has been provided.
333329
This allows a Kafka streams topology to interact with a spring-messaging component, such as a Spring Integration flow.
334-
See <<streams-messaging>> and <<streams-integration>> for more information.
330+
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.
335331

336332
==== JSON Component Changes
337333

@@ -491,10 +487,6 @@ This change allows proper fencing of zombies, https://www.confluent.io/blog/tran
491487

492488
This version requires the 1.0.0 `kafka-clients` or higher.
493489

494-
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>>.
495-
496-
// TODO: No topic marked deps-for-11x exists in any of the files in the directory that contains this file.
497-
498490
The 1.1.x client is supported natively in version 2.2.
499491

500492
==== JSON Improvements

src/reference/asciidoc/kafka.adoc

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

4044-
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>>.
4044+
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].
40454045
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.
40464046
You can inject the `MessageConverter` into a `KafkaTemplate` instance directly and by using `AbstractKafkaListenerContainerFactory` bean definition for the `@KafkaListener.containerFactory()` property.
40474047
The following example shows how to do so:
@@ -4216,7 +4216,7 @@ consumerProps.put(ErrorHandlingDeserializer.VALUE_FUNCTION, FailedFooProvider.cl
42164216
===== Payload Conversion with Batch Listeners
42174217

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

42214221
By default, the type for the conversion is inferred from the listener argument.
42224222
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)