Skip to content

Commit bdda8d3

Browse files
Merge branch '3.0.x'
Closes spring-projectsgh-2304
2 parents 8ee0087 + 4847458 commit bdda8d3

File tree

13 files changed

+464
-7
lines changed

13 files changed

+464
-7
lines changed

gradle.properties

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
22
org.gradle.parallel=true
33
version=3.1.1-SNAPSHOT
4+
springBootVersion=3.0.7
Binary file not shown.
Binary file not shown.

spring-session-docs/modules/ROOT/nav.adoc

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
* xref:whats-new.adoc[What's New]
2+
* xref:getting-started.adoc[Getting Started]
3+
** xref:getting-started/using-redis.adoc[Using Redis]
4+
** xref:getting-started/using-jdbc.adoc[Using JDBC]
5+
** xref:getting-started/using-mongodb.adoc[Using MongoDB]
6+
** xref:getting-started/using-hazelcast.adoc[Using Hazelcast]
7+
** xref:getting-started/using-custom-implementation.adoc[Using Your Own Implementation]
28
* xref:samples.adoc[Samples & Guides (Start Here)]
39
** Boot Samples
410
*** HttpSession
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[[getting-started]]
2+
= Getting Started
3+
4+
In order to get started using Spring Session, you must choose a persistent store to use.
5+
Spring Session supports a few different persistent stores out-of-the-box:
6+
7+
- https://redis.io/[Redis]
8+
- https://pt.wikipedia.org/wiki/JDBC[JDBC]
9+
- https://hazelcast.com/[Hazelcast]
10+
- https://www.mongodb.com/[MongoDB]
11+
12+
There are other projects that are not supported by Spring Session, but are supported by the community:
13+
14+
- https://github.com/spring-projects/spring-session-data-geode[Spring Session Data Geode]
15+
16+
Now that you have chosen the persistence store that best fit your needs, you can jump to their respective sections:
17+
18+
- xref:getting-started/using-redis.adoc[I want to use Redis]
19+
- xref:getting-started/using-jdbc.adoc[I want to use JDBC]
20+
- xref:getting-started/using-hazelcast.adoc[I want to use Hazelcast]
21+
- xref:getting-started/using-mongodb.adoc[I want to use MongoDB]
22+
- xref:getting-started/using-custom-implementation.adoc[I want to use my own implementation]

spring-session-docs/modules/ROOT/pages/getting-started/using-custom-implementation.adoc

Whitespace-only changes.

spring-session-docs/modules/ROOT/pages/getting-started/using-hazelcast.adoc

Whitespace-only changes.

spring-session-docs/modules/ROOT/pages/getting-started/using-jdbc.adoc

Whitespace-only changes.

spring-session-docs/modules/ROOT/pages/getting-started/using-mongodb.adoc

Whitespace-only changes.

0 commit comments

Comments
 (0)