Class MongoDbMessageStore
java.lang.Object
org.springframework.integration.store.AbstractBatchingMessageGroupStore
org.springframework.integration.store.AbstractMessageGroupStore
org.springframework.integration.mongodb.store.MongoDbMessageStore
- All Implemented Interfaces:
Iterable<MessageGroup>
,Aware
,BeanClassLoaderAware
,InitializingBean
,ApplicationContextAware
,BasicMessageGroupStore
,MessageGroupStore
,MessageStore
public class MongoDbMessageStore extends AbstractMessageGroupStore implements MessageStore, BeanClassLoaderAware, ApplicationContextAware, InitializingBean
An implementation of both the
MessageStore
and
MessageGroupStore
strategies that relies upon MongoDB for persistence.- Since:
- 2.1
- Author:
- Mark Fisher, Oleg Zhurakousky, Sean Brandt, Jodie StJohn, Gary Russell, Artem Bilan
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.springframework.integration.store.MessageGroupStore
MessageGroupStore.MessageGroupCallback
-
Field Summary
Fields Modifier and Type Field Description static String
SEQUENCE_NAME
-
Constructor Summary
Constructors Constructor Description MongoDbMessageStore(MongoDatabaseFactory mongoDbFactory)
Create a MongoDbMessageStore using the providedMongoDatabaseFactory
.and the default collection name.MongoDbMessageStore(MongoDatabaseFactory mongoDbFactory, String collectionName)
Create a MongoDbMessageStore using the providedMongoDatabaseFactory
and collection name. -
Method Summary
Modifier and Type Method Description void
addAllowedPatterns(String... patterns)
Add patterns for packages/classes that are allowed to be deserialized.<T> Message<T>
addMessage(Message<T> message)
Put the provided Message into the MessageStore.void
addMessagesToGroup(Object groupId, Message<?>... messages)
Store messages with an association to a group id.void
afterPropertiesSet()
void
completeGroup(Object groupId)
Completes this MessageGroup.Message<?>
getMessage(UUID id)
long
getMessageCount()
Optional attribute giving the number of messages in the store.int
getMessageCountForAllMessageGroups()
Optional attribute giving the number of messages in the store over all groups.MessageGroup
getMessageGroup(Object groupId)
Return all Messages currently in the MessageStore that were stored usingBasicMessageGroupStore.addMessageToGroup(Object, Message)
with this group id.int
getMessageGroupCount()
Optional attribute giving the number of message groups.MessageMetadata
getMessageMetadata(UUID id)
Collection<Message<?>>
getMessagesForGroup(Object groupId)
Retrieve messages for the provided group id.Message<?>
getOneMessageFromGroup(Object groupId)
Return the oneMessage
fromMessageGroup
.Iterator<MessageGroup>
iterator()
int
messageGroupSize(Object groupId)
Returns the size of this MessageGroup.Message<?>
pollMessageFromGroup(Object groupId)
Polls Message from thisMessageGroup
(in FIFO style if supported by the implementation) while also removing the polledMessage
Message<?>
removeMessage(UUID id)
Remove the Message with the given id from the MessageStore, if present, and return it.void
removeMessageGroup(Object groupId)
Remove the message group with this id.void
removeMessagesFromGroup(Object groupId, Collection<Message<?>> messages)
Persist the deletion of messages from the group.void
setApplicationContext(ApplicationContext applicationContext)
void
setBeanClassLoader(ClassLoader classLoader)
void
setCustomConverters(Object... customConverters)
Configure a set of converters to use in theMappingMongoConverter
.void
setLastReleasedSequenceNumberForGroup(Object groupId, int sequenceNumber)
Allows you to set the sequence number of the last released Message.Stream<Message<?>>
streamMessagesForGroup(Object groupId)
Return a stream for messages stored in the provided group.Methods inherited from class org.springframework.integration.store.AbstractMessageGroupStore
addMessageToGroup, copy, expireMessageGroups, getGroupMetadata, getMessageGroupFactory, isTimeoutOnIdle, registerMessageGroupExpiryCallback, removeMessagesFromGroup, setExpiryCallbacks, setLazyLoadMessageGroups, setTimeoutOnIdle
Methods inherited from class org.springframework.integration.store.AbstractBatchingMessageGroupStore
getRemoveBatchSize, setMessageGroupFactory, setRemoveBatchSize
-
Field Details
-
SEQUENCE_NAME
- See Also:
- Constant Field Values
-
-
Constructor Details
-
MongoDbMessageStore
Create a MongoDbMessageStore using the providedMongoDatabaseFactory
.and the default collection name.- Parameters:
mongoDbFactory
- The mongodb factory.
-
MongoDbMessageStore
Create a MongoDbMessageStore using the providedMongoDatabaseFactory
and collection name.- Parameters:
mongoDbFactory
- The mongodb factory.collectionName
- The collection name.
-
-
Method Details
-
setBeanClassLoader
- Specified by:
setBeanClassLoader
in interfaceBeanClassLoaderAware
-
setApplicationContext
- Specified by:
setApplicationContext
in interfaceApplicationContextAware
- Throws:
BeansException
-
addAllowedPatterns
Add patterns for packages/classes that are allowed to be deserialized. A class can be fully qualified or a wildcard '*' is allowed at the beginning or end of the class name. Examples:com.foo.*
,*.MyClass
.- Parameters:
patterns
- the patterns.- Since:
- 5.4
-
setCustomConverters
Configure a set of converters to use in theMappingMongoConverter
. Must be instances oforg.springframework.core.convert.converter.Converter
,org.springframework.core.convert.converter.ConverterFactory
,org.springframework.core.convert.converter.GenericConverter
ororg.springframework.data.convert.ConverterBuilder.ConverterAware
.- Parameters:
customConverters
- the converters to use.- Since:
- 5.1.6
-
afterPropertiesSet
public void afterPropertiesSet()- Specified by:
afterPropertiesSet
in interfaceInitializingBean
-
addMessage
Description copied from interface:MessageStore
Put the provided Message into the MessageStore. The store may need to mutate the message internally, and if it does then the return value can be different than the input. The id of the return value will be used as an index so that theMessageStore.getMessage(UUID)
andMessageStore.removeMessage(UUID)
behave properly. Since messages are immutable, putting the same message more than once is a no-op.- Specified by:
addMessage
in interfaceMessageStore
- Type Parameters:
T
- The payload type.- Parameters:
message
- The message.- Returns:
- The message that was stored.
-
getMessage
- Specified by:
getMessage
in interfaceMessageStore
- Parameters:
id
- The message identifier.- Returns:
- The Message with the given id, or null if no Message with that id exists in the MessageStore.
-
getMessageMetadata
Description copied from interface:MessageStore
- Specified by:
getMessageMetadata
in interfaceMessageStore
- Parameters:
id
- The message identifier.- Returns:
- The MessageMetadata with the given id, or null if no Message with that id exists in the MessageStore or the message has no metadata (legacy message from an earlier version).
-
getMessageCount
Description copied from interface:MessageStore
Optional attribute giving the number of messages in the store. Implementations may decline to respond by throwing an exception.- Specified by:
getMessageCount
in interfaceMessageStore
- Returns:
- The number of messages.
-
removeMessage
Description copied from interface:MessageStore
Remove the Message with the given id from the MessageStore, if present, and return it. If no Message with that id is present in the store, this will return null.- Specified by:
removeMessage
in interfaceMessageStore
- Parameters:
id
- THe message identifier.- Returns:
- The message.
-
getMessageGroup
Description copied from interface:BasicMessageGroupStore
Return all Messages currently in the MessageStore that were stored usingBasicMessageGroupStore.addMessageToGroup(Object, Message)
with this group id.- Specified by:
getMessageGroup
in interfaceBasicMessageGroupStore
- Parameters:
groupId
- The group identifier.- Returns:
- A group of messages, empty if none exists for this key.
-
addMessagesToGroup
Description copied from interface:MessageGroupStore
Store messages with an association to a group id. This can be used to group messages together.- Specified by:
addMessagesToGroup
in interfaceMessageGroupStore
- Parameters:
groupId
- The group id to store messages under.messages
- The messages to add.
-
removeMessagesFromGroup
Description copied from interface:MessageGroupStore
Persist the deletion of messages from the group.- Specified by:
removeMessagesFromGroup
in interfaceMessageGroupStore
- Parameters:
groupId
- The groupId for the group containing the message(s).messages
- The messages to be removed.
-
removeMessageGroup
Description copied from interface:BasicMessageGroupStore
Remove the message group with this id.- Specified by:
removeMessageGroup
in interfaceBasicMessageGroupStore
- Parameters:
groupId
- The id of the group to remove.
-
iterator
- Specified by:
iterator
in interfaceIterable<MessageGroup>
- Specified by:
iterator
in interfaceMessageGroupStore
- Returns:
- The iterator of currently accumulated
MessageGroup
s.
-
pollMessageFromGroup
Description copied from interface:BasicMessageGroupStore
Polls Message from thisMessageGroup
(in FIFO style if supported by the implementation) while also removing the polledMessage
- Specified by:
pollMessageFromGroup
in interfaceBasicMessageGroupStore
- Parameters:
groupId
- The group identifier.- Returns:
- The message.
-
messageGroupSize
Description copied from interface:BasicMessageGroupStore
Returns the size of this MessageGroup.- Specified by:
messageGroupSize
in interfaceBasicMessageGroupStore
- Parameters:
groupId
- The group identifier.- Returns:
- The size.
-
setLastReleasedSequenceNumberForGroup
Description copied from interface:MessageGroupStore
Allows you to set the sequence number of the last released Message. Used for Resequencing use cases- Specified by:
setLastReleasedSequenceNumberForGroup
in interfaceMessageGroupStore
- Parameters:
groupId
- The group identifier.sequenceNumber
- The sequence number.
-
completeGroup
Description copied from interface:MessageGroupStore
Completes this MessageGroup. Completion of the MessageGroup generally means that this group should not be allowing any more mutating operation to be performed on it. For example any attempt to add/remove new Message form the group should not be allowed.- Specified by:
completeGroup
in interfaceMessageGroupStore
- Parameters:
groupId
- The group identifier.
-
getOneMessageFromGroup
Description copied from interface:MessageGroupStore
Return the oneMessage
fromMessageGroup
.- Specified by:
getOneMessageFromGroup
in interfaceMessageGroupStore
- Parameters:
groupId
- The group identifier.- Returns:
- the
Message
.
-
getMessagesForGroup
Description copied from interface:MessageGroupStore
Retrieve messages for the provided group id.- Specified by:
getMessagesForGroup
in interfaceMessageGroupStore
- Parameters:
groupId
- The group id to retrieve messages for.- Returns:
- the messages for group.
-
streamMessagesForGroup
Description copied from interface:MessageGroupStore
Return a stream for messages stored in the provided group.- Specified by:
streamMessagesForGroup
in interfaceMessageGroupStore
- Parameters:
groupId
- the group id to retrieve messages.- Returns:
- the
Stream
for messages in this group.
-
getMessageCountForAllMessageGroups
Description copied from interface:MessageGroupStore
Optional attribute giving the number of messages in the store over all groups. Implementations may decline to respond by throwing an exception.- Specified by:
getMessageCountForAllMessageGroups
in interfaceMessageGroupStore
- Overrides:
getMessageCountForAllMessageGroups
in classAbstractMessageGroupStore
- Returns:
- the number of messages
-
getMessageGroupCount
Description copied from interface:MessageGroupStore
Optional attribute giving the number of message groups. Implementations may decline to respond by throwing an exception.- Specified by:
getMessageGroupCount
in interfaceMessageGroupStore
- Overrides:
getMessageGroupCount
in classAbstractMessageGroupStore
- Returns:
- the number message groups
-