Update documentation about serializable keys in the execution context

Resolves #4457
This commit is contained in:
hwan33
2023-11-07 20:08:55 +09:00
committed by Mahmoud Ben Hassine
parent 41f0fc803b
commit dcd1ac8b52
2 changed files with 9 additions and 2 deletions

View File

@@ -30,8 +30,9 @@ import org.springframework.lang.Nullable;
* that allows optionally for type safety on reads. It also allows for dirty checking by
* setting a 'dirty' flag whenever any put is called.
* <p>
* Note that putting <code>null</code> value is equivalent to removing the entry for the
* given key.
* Non-transient entries should be serializable, otherwise a custom serializer should be
* used. Note that putting <code>null</code> value is equivalent to removing the entry for
* the given key.
*
* @author Lucas Ward
* @author Douglas Kaminsky