You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.adoc
+41-7Lines changed: 41 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,27 +13,61 @@ It also provides transparent integration with:
13
13
14
14
== Modules
15
15
16
-
Spring Session consists of the following modules:
16
+
This Spring Session repository consists of the following modules:
17
17
18
18
* Spring Session Core - provides core Spring Session functionalities and APIs
19
19
* Spring Session Data Redis - provides `SessionRepository` and `ReactiveSessionRepository` implementation backed by Redis and configuration support
20
20
* Spring Session JDBC - provides `SessionRepository` implementation backed by a relational database and configuration support
21
21
* Spring Session Hazelcast - provides `SessionRepository` implementation backed by Hazelcast and configuration support
22
22
23
+
Additional Spring Session modules can be found in the https://github.com/spring-projects/spring-session-data-mongodb[spring-session-data-mongodb] repository
24
+
and [https://github.com/spring-projects/spring-session-data-geode]spring-session-data-geode repository.
23
25
24
-
== Code of Conduct
26
+
== Getting Started
27
+
28
+
We recommend you visit the https://docs.spring.io/spring-session/docs/current/reference/html5/#samples[Spring Session Reference] and look through the "Samples and Guides" section to see which one best suits your needs.
29
+
30
+
== Samples
31
+
32
+
Spring Session samples are available in the https://github.com/spring-projects/spring-session/tree/master/spring-session-samples[spring-session-samples] directory.
33
+
34
+
35
+
== Contributing
25
36
26
-
Please see our https://github.com/spring-projects/.github/blob/master/CODE_OF_CONDUCT.md[code of conduct]
37
+
Please see our https://github.com/spring-projects/spring-session/blob/master/CONTRIBUTING.adoc[Contributing guidelines]
38
+
for information on how to report issues, enhancements or security vulnerabilities.
27
39
40
+
== Building from Source
28
41
29
-
== Reporting Security Vulnerabilities
42
+
Spring Session uses a https://gradle.org[Gradle]-based build system.
43
+
In the instructions below, `./gradlew` is invoked from the root of the source tree and serves as
44
+
a cross-platform, self-contained bootstrap mechanism for the build.
30
45
31
-
Please see our https://github.com/spring-projects/spring-session/security/policy[Security policy].
Install all spring-\* jars into your local Maven cache
52
+
----
53
+
./gradlew install
54
+
----
33
55
34
-
== Spring Session Project Site
56
+
Compile and test; build all jars, distribution zips, and docs
57
+
----
58
+
./gradlew build
59
+
----
60
+
61
+
62
+
== Documentation
63
+
64
+
You can find the documentation, samples, and guides for using Spring Session on the https://projects.spring.io/spring-session/[Spring Session project site].
65
+
66
+
For more in depth information, visit the https://docs.spring.io/spring-session/docs/current/reference/html5/[Spring Session Reference].
67
+
68
+
== Code of Conduct
35
69
36
-
You can find the documentation, issue management, support, samples, and guides for using Spring Session at https://projects.spring.io/spring-session/
70
+
Please see our https://github.com/spring-projects/.github/blob/master/CODE_OF_CONDUCT.md[code of conduct].
0 commit comments