Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
85a289f7
Commit
85a289f7
authored
Aug 06, 2019
by
Vedran Pavic
Committed by
Stephane Nicoll
Aug 08, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Harmonize Spring Session flush mode properties javadoc
See gh-17797
parent
84dd1f2d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
HazelcastSessionProperties.java
...oot/autoconfigure/session/HazelcastSessionProperties.java
+2
-1
RedisSessionProperties.java
...rk/boot/autoconfigure/session/RedisSessionProperties.java
+2
-1
No files found.
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/session/HazelcastSessionProperties.java
View file @
85a289f7
...
@@ -35,7 +35,8 @@ public class HazelcastSessionProperties {
...
@@ -35,7 +35,8 @@ public class HazelcastSessionProperties {
private
String
mapName
=
"spring:session:sessions"
;
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
;
private
FlushMode
flushMode
=
FlushMode
.
ON_SAVE
;
...
...
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/session/RedisSessionProperties.java
View file @
85a289f7
...
@@ -37,7 +37,8 @@ public class RedisSessionProperties {
...
@@ -37,7 +37,8 @@ public class RedisSessionProperties {
private
String
namespace
=
"spring:session"
;
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
;
private
FlushMode
flushMode
=
FlushMode
.
ON_SAVE
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment