Spring Boot provides Spring Session auto-configuration for a wide range of stores:
If Spring Session is available, you must choose the
StoreType
that you wish to
use to store the sessions. For instance to use JDBC as backend store, you’d configure
your application as follows:
spring.session.store-type=jdbc
Tip | |
---|---|
You can disable Spring Session by setting the |
Each store has specific additional settings. For instance it is possible to customize the name of the table for the jdbc store:
spring.session.jdbc.table-name=SESSIONS