Merge branch '2.3.x'

Closes gh-24019
pull/24020/head
Andy Wilkinson 4 years ago
commit 6cb5a98036

@ -6751,11 +6751,15 @@ When building a Servlet web application, the following stores can be auto-config
* Hazelcast * Hazelcast
* MongoDB * MongoDB
The Servlet auto-configuration replaces the need to use `@Enable*HttpSession`.
When building a reactive web application, the following stores can be auto-configured: When building a reactive web application, the following stores can be auto-configured:
* Redis * Redis
* MongoDB * MongoDB
The reactive auto-configuration replaces the need to use `@Enable*WebSession`.
If a single Spring Session module is present on the classpath, Spring Boot uses that store implementation automatically. If a single Spring Session module is present on the classpath, Spring Boot uses that store implementation automatically.
If you have more than one implementation, you must choose the {spring-boot-autoconfigure-module-code}/session/StoreType.java[`StoreType`] that you wish to use to store the sessions. If you have more than one implementation, you must choose the {spring-boot-autoconfigure-module-code}/session/StoreType.java[`StoreType`] that you wish to use to store the sessions.
For instance, to use JDBC as the back-end store, you can configure your application as follows: For instance, to use JDBC as the back-end store, you can configure your application as follows:
@ -6784,6 +6788,10 @@ For setting the timeout of the session you can use the configprop:spring.session
If that property is not set with a Servlet web appplication, the auto-configuration falls back to the value of configprop:server.servlet.session.timeout[]. If that property is not set with a Servlet web appplication, the auto-configuration falls back to the value of configprop:server.servlet.session.timeout[].
You can take control over Spring Session's configuration using `@Enable*HttpSession` (Servlet) or `@Enable@WebSession` (Reactive).
This will cause the auto-configuratio to back off.
Spring Session can then be configured using the annotation's attributes rather than the previously described configuration properties.
[[boot-features-jmx]] [[boot-features-jmx]]
== Monitoring and Management over JMX == Monitoring and Management over JMX

Loading…
Cancel
Save