Polish upgrade to Spring Session 1.3.0.RC1

Closes gh-7457
This commit is contained in:
Stephane Nicoll 2016-11-23 14:34:10 +01:00
parent ffec6fddd2
commit ea023618a4
2 changed files with 4 additions and 4 deletions

View File

@ -94,7 +94,7 @@ public class SessionProperties {
private String mapName = "spring:session:sessions";
/**
* Flush mode for the Hazelcast sessions.
* Sessions flush mode.
*/
private HazelcastFlushMode flushMode = HazelcastFlushMode.ON_SAVE;
@ -208,7 +208,7 @@ public class SessionProperties {
private String namespace = "";
/**
* Flush mode for the Redis sessions.
* Sessions flush mode.
*/
private RedisFlushMode flushMode = RedisFlushMode.ON_SAVE;

View File

@ -375,13 +375,13 @@ content into your application; rather pick only the properties that you need.
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/ # Locations of static resources.
# SPRING SESSION ({sc-spring-boot-autoconfigure}/session/SessionProperties.{sc-ext}[SessionProperties])
spring.session.hazelcast.flush-mode= # Flush mode for the Hazelcast sessions.
spring.session.hazelcast.flush-mode= # Sessions flush mode.
spring.session.hazelcast.map-name=spring:session:sessions # Name of the map used to store sessions.
spring.session.jdbc.initializer.enabled= # Create the required session tables on startup if necessary. Enabled automatically if the default table name is set or a custom schema is configured.
spring.session.jdbc.schema=classpath:org/springframework/session/jdbc/schema-@@platform@@.sql # Path to the SQL file to use to initialize the database schema.
spring.session.jdbc.table-name=SPRING_SESSION # Name of database table used to store sessions.
spring.session.mongo.collection-name=sessions # Collection name used to store sessions.
spring.session.redis.flush-mode= # Flush mode for the Redis sessions.
spring.session.redis.flush-mode= # Sessions flush mode.
spring.session.redis.namespace= # Namespace for keys used to store sessions.
spring.session.store-type= # Session store type.