INT-3416 Reset SMS.copyOnGet By Default
JIRA: https://jira.spring.io/browse/INT-3416 Add caution to docs about users getting a hard reference to the group instead of a copy.
This commit is contained in:
committed by
Artem Bilan
parent
1df6d872fa
commit
117669fb9a
@@ -147,7 +147,7 @@ public abstract class AbstractCorrelatingMessageHandler extends AbstractMessageH
|
||||
}
|
||||
|
||||
public AbstractCorrelatingMessageHandler(MessageGroupProcessor processor) {
|
||||
this(processor, SimpleMessageStore.fastMessageStore(0), null, null);
|
||||
this(processor, new SimpleMessageStore(0), null, null);
|
||||
}
|
||||
|
||||
public void setLockRegistry(LockRegistry lockRegistry) {
|
||||
|
||||
@@ -57,7 +57,7 @@ public class SimpleMessageStore extends AbstractMessageGroupStore
|
||||
|
||||
private volatile boolean isUsed;
|
||||
|
||||
private volatile boolean copyOnGet = true; // TODO: default false in 4.1
|
||||
private volatile boolean copyOnGet = false;
|
||||
|
||||
/**
|
||||
* Creates a SimpleMessageStore with a maximum size limited by the given capacity, or unlimited size if the given
|
||||
@@ -113,7 +113,9 @@ public class SimpleMessageStore extends AbstractMessageGroupStore
|
||||
* @param capacity the capacity (0 for unlimited).
|
||||
* @return the store.
|
||||
* @since 4.0.1
|
||||
* @deprecated in 4.1 - copyOnGet is now false by default.
|
||||
*/
|
||||
@Deprecated
|
||||
public static SimpleMessageStore fastMessageStore(int capacity) {
|
||||
SimpleMessageStore store = new SimpleMessageStore(capacity);
|
||||
store.setCopyOnGet(false);
|
||||
@@ -122,6 +124,7 @@ public class SimpleMessageStore extends AbstractMessageGroupStore
|
||||
|
||||
/**
|
||||
* Set to false to disable copying the group in {@link #getMessageGroup(Object)}.
|
||||
* Starting with 4.1, this is false by default.
|
||||
* @param copyOnGet True to copy, false to not.
|
||||
* @since 4.0.1
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user