Harmonize Spring Session flush mode properties javadoc

See gh-17797
This commit is contained in:
Vedran Pavic
2019-08-06 21:05:26 +02:00
committed by Stephane Nicoll
parent 84dd1f2d29
commit 85a289f71a
2 changed files with 4 additions and 2 deletions

View File

@@ -35,7 +35,8 @@ public class HazelcastSessionProperties {
private String mapName = "spring:session:sessions";
/**
* Sessions flush mode.
* Sessions flush mode. Determines when session changes are written to the session
* store.
*/
private FlushMode flushMode = FlushMode.ON_SAVE;

View File

@@ -37,7 +37,8 @@ public class RedisSessionProperties {
private String namespace = "spring:session";
/**
* Sessions flush mode.
* Sessions flush mode. Determines when session changes are written to the session
* store.
*/
private FlushMode flushMode = FlushMode.ON_SAVE;