From 590398f9722db75745fd994cb3f1ad1c6cebf913 Mon Sep 17 00:00:00 2001 From: Manuel Jordan Date: Mon, 25 Apr 2016 18:59:17 -0500 Subject: [PATCH] INT-4003: Fix `channel.adoc` for wrong `MS` def JIRA: https://jira.spring.io/browse/INT-4003 * The `channel.adoc` has a wrong mention of `JdbcMessageStore`, when the `JdbcChannelMessageStore` must be used --- src/reference/asciidoc/channel.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reference/asciidoc/channel.adoc b/src/reference/asciidoc/channel.adoc index a025eb3066..fb67d46ad1 100644 --- a/src/reference/asciidoc/channel.adoc +++ b/src/reference/asciidoc/channel.adoc @@ -477,7 +477,7 @@ For more details on `MessageGroupStore` and `MessageStore` see <> When a `QueueChannel` receives a Message, it will add it to the Message Store, and when a Message is polled from a `QueueChannel`, it is removed from the Message Store. By default, a `QueueChannel` stores its Messages in an in-memory Queue and can therefore lead to the lost message scenario mentioned above. -However Spring Integration provides persistent stores, such as the `JdbcMessageStore`. +However Spring Integration provides persistent stores, such as the `JdbcChannelMessageStore`. You can configure a Message Store for any `QueueChannel` by adding the `message-store` attribute as shown in the next example.