diff --git a/spring-session-docs/modules/ROOT/nav.adoc b/spring-session-docs/modules/ROOT/nav.adoc index 70f317c0..182a80aa 100644 --- a/spring-session-docs/modules/ROOT/nav.adoc +++ b/spring-session-docs/modules/ROOT/nav.adoc @@ -4,7 +4,7 @@ ** xref:getting-started/using-jdbc.adoc[Using JDBC] ** xref:getting-started/using-mongodb.adoc[Using MongoDB] ** xref:getting-started/using-hazelcast.adoc[Using Hazelcast] -** xref:getting-started/using-custom-implementation.adoc[Using Your Own Implementation] +** xref:getting-started/using-custom-session-repository.adoc[Using Your Own Session Repository] * xref:samples.adoc[Samples & Guides (Start Here)] ** Boot Samples *** HttpSession diff --git a/spring-session-docs/modules/ROOT/pages/getting-started.adoc b/spring-session-docs/modules/ROOT/pages/getting-started.adoc index 86d4a56b..241d0c71 100644 --- a/spring-session-docs/modules/ROOT/pages/getting-started.adoc +++ b/spring-session-docs/modules/ROOT/pages/getting-started.adoc @@ -19,4 +19,4 @@ Now that you have chosen the persistence store that best fit your needs, you can - 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-implementation.adoc[I want to use my own implementation] +- xref:getting-started/using-custom-session-repository.adoc[I want to use my own implementation] diff --git a/spring-session-docs/modules/ROOT/pages/getting-started/using-custom-implementation.adoc b/spring-session-docs/modules/ROOT/pages/getting-started/using-custom-implementation.adoc deleted file mode 100644 index e69de29b..00000000 diff --git a/spring-session-docs/modules/ROOT/pages/getting-started/using-custom-session-repository.adoc b/spring-session-docs/modules/ROOT/pages/getting-started/using-custom-session-repository.adoc new file mode 100644 index 00000000..912c2305 --- /dev/null +++ b/spring-session-docs/modules/ROOT/pages/getting-started/using-custom-session-repository.adoc @@ -0,0 +1,4 @@ +[[using-custom-session-repository]] += Using Spring Session with Custom Session Repository + +This section is still a work in progress, please refer to this xref:api.adoc#custom-sessionrepository[other section]. diff --git a/spring-session-docs/modules/ROOT/pages/getting-started/using-hazelcast.adoc b/spring-session-docs/modules/ROOT/pages/getting-started/using-hazelcast.adoc index e69de29b..aeea26e8 100644 --- a/spring-session-docs/modules/ROOT/pages/getting-started/using-hazelcast.adoc +++ b/spring-session-docs/modules/ROOT/pages/getting-started/using-hazelcast.adoc @@ -0,0 +1,4 @@ +[[using-hazelcast]] += Using Spring Session with Hazelcast + +This section is still a work in progress, please refer to this xref:http-session.adoc#httpsession-hazelcast[other section]. diff --git a/spring-session-docs/modules/ROOT/pages/getting-started/using-jdbc.adoc b/spring-session-docs/modules/ROOT/pages/getting-started/using-jdbc.adoc index e69de29b..e612d604 100644 --- a/spring-session-docs/modules/ROOT/pages/getting-started/using-jdbc.adoc +++ b/spring-session-docs/modules/ROOT/pages/getting-started/using-jdbc.adoc @@ -0,0 +1,4 @@ +[[using-jdbc]] += Using Spring Session with JDBC + +This section is still a work in progress, please refer to this xref:guides/boot-jdbc.adoc[other section]. diff --git a/spring-session-docs/modules/ROOT/pages/getting-started/using-mongodb.adoc b/spring-session-docs/modules/ROOT/pages/getting-started/using-mongodb.adoc index e69de29b..130ed3dd 100644 --- a/spring-session-docs/modules/ROOT/pages/getting-started/using-mongodb.adoc +++ b/spring-session-docs/modules/ROOT/pages/getting-started/using-mongodb.adoc @@ -0,0 +1,4 @@ +[[using-mongodb]] += Using Spring Session with MongoDB + +This section is still a work in progress, please refer to this xref:guides/boot-mongo.adoc[other section].