23 lines
1009 B
Plaintext
23 lines
1009 B
Plaintext
[[getting-started]]
|
|
= Getting Started
|
|
|
|
In order to get started using Spring Session, you must choose a persistent store to use.
|
|
Spring Session supports a few different persistent stores out-of-the-box:
|
|
|
|
- https://redis.io/[Redis]
|
|
- https://pt.wikipedia.org/wiki/JDBC[JDBC]
|
|
- https://hazelcast.com/[Hazelcast]
|
|
- https://www.mongodb.com/[MongoDB]
|
|
|
|
There are other projects that are not supported by Spring Session, but are supported by the community:
|
|
|
|
- https://github.com/spring-projects/spring-session-data-geode[Spring Session Data Geode]
|
|
|
|
Now that you have chosen the persistence store that best fit your needs, you can jump to their respective sections:
|
|
|
|
- xref:getting-started/using-redis.adoc[I want to use Redis]
|
|
- xref:getting-started/using-jdbc.adoc[I want to use JDBC]
|
|
- xref:getting-started/using-hazelcast.adoc[I want to use Hazelcast]
|
|
- xref:getting-started/using-mongodb.adoc[I want to use MongoDB]
|
|
- xref:getting-started/using-custom-session-repository.adoc[I want to use my own implementation]
|