diff --git a/spring-session-docs/modules/ROOT/nav.adoc b/spring-session-docs/modules/ROOT/nav.adoc index e1321519..9e9cc5ec 100644 --- a/spring-session-docs/modules/ROOT/nav.adoc +++ b/spring-session-docs/modules/ROOT/nav.adoc @@ -1,4 +1,3 @@ -* xref:introduction.adoc[Introduction] * xref:whats-new.adoc[What's New] * xref:samples.adoc[Samples & Guides (Start Here)] * xref:modules.adoc[Modules] diff --git a/spring-session-docs/modules/ROOT/pages/index.adoc b/spring-session-docs/modules/ROOT/pages/index.adoc index 69b8596f..9040ff33 100644 --- a/spring-session-docs/modules/ROOT/pages/index.adoc +++ b/spring-session-docs/modules/ROOT/pages/index.adoc @@ -8,6 +8,15 @@ Rob Winch; Vedran Pavić; Jay Bryant; Eleftheria Stein-Kousathana [[abstract]] Spring Session provides an API and implementations for managing a user's session information. +[[introduction]] +Spring Session provides an API and implementations for managing a user's session information while also making it trivial to support clustered sessions without being tied to an application container-specific solution. +It also provides transparent integration with: + +* xref:http-session.adoc#httpsession[HttpSession]: Allows replacing the `HttpSession` in an application container-neutral way, with support for providing session IDs in headers to work with RESTful APIs. +* xref:web-socket.adoc#websocket[WebSocket]: Provides the ability to keep the `HttpSession` alive when receiving WebSocket messages +* xref:web-session.adoc#websession[WebSession]: Allows replacing the Spring WebFlux's `WebSession` in an application container-neutral way. + + [[community]] == Spring Session Community diff --git a/spring-session-docs/modules/ROOT/pages/introduction.adoc b/spring-session-docs/modules/ROOT/pages/introduction.adoc deleted file mode 100644 index d7ebade9..00000000 --- a/spring-session-docs/modules/ROOT/pages/introduction.adoc +++ /dev/null @@ -1,9 +0,0 @@ -[[introduction]] -= Introduction - -Spring Session provides an API and implementations for managing a user's session information while also making it trivial to support clustered sessions without being tied to an application container-specific solution. -It also provides transparent integration with: - -* xref:http-session.adoc#httpsession[HttpSession]: Allows replacing the `HttpSession` in an application container-neutral way, with support for providing session IDs in headers to work with RESTful APIs. -* xref:web-socket.adoc#websocket[WebSocket]: Provides the ability to keep the `HttpSession` alive when receiving WebSocket messages -* xref:web-session.adoc#websession[WebSession]: Allows replacing the Spring WebFlux's `WebSession` in an application container-neutral way.