Skip to content

Commit 6bb9e0c

Browse files
authored
Fix dead page url in filtering.adoc (#3648)
1 parent eedd23a commit 6bb9e0c

File tree

1 file changed

+1
-1
lines changed
  • spring-kafka-docs/src/main/antora/modules/ROOT/pages/kafka/receiving-messages

1 file changed

+1
-1
lines changed

spring-kafka-docs/src/main/antora/modules/ROOT/pages/kafka/receiving-messages/filtering.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
In certain scenarios, such as rebalancing, a message that has already been processed may be redelivered.
55
The framework cannot know whether such a message has been processed or not.
66
That is an application-level function.
7-
This is known as the https://www.enterpriseintegrationpatterns.com/patterns/messaging/IdempotentReceiver.html[Idempotent Receiver] pattern and Spring Integration provides an https://docs.spring.io/spring-integration/reference/html/#idempotent-receiver[implementation] of it.
7+
This is known as the https://www.enterpriseintegrationpatterns.com/patterns/messaging/IdempotentReceiver.html[Idempotent Receiver] pattern and Spring Integration provides an https://docs.spring.io/spring-integration/reference/handler-advice/idempotent-receiver.html[implementation] of it.
88

99
The Spring for Apache Kafka project also provides some assistance by means of the `FilteringMessageListenerAdapter` class, which can wrap your `MessageListener`.
1010
This class takes an implementation of `RecordFilterStrategy` in which you implement the `filter` method to signal that a message is a duplicate and should be discarded.

0 commit comments

Comments
 (0)