diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/session/SessionProperties.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/session/SessionProperties.java index a1a549141fa..fc83b3f5958 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/session/SessionProperties.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/session/SessionProperties.java @@ -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; diff --git a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc index 9a995dd6a08..5d490e66c50 100644 --- a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc +++ b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc @@ -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.