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: spring-session-docs/modules/ROOT/pages/guides/java-hazelcast.adoc
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ Spring Session provides `PrincipalNameExtractor` for this purpose.
100
100
is not set, Hazelcast will serialize sessions using native Java serialization.
101
101
<4> We create a `HazelcastInstance` that connects Spring Session to Hazelcast.
102
102
By default, the application starts and connects to an embedded instance of Hazelcast.
103
-
For more information on configuring Hazelcast, see the https://docs.hazelcast.org/docs/{hazelcast-version}/manual/html-single/index.html#hazelcast-configuration[reference documentation].
103
+
For more information on configuring Hazelcast, see the https://docs.hazelcast.com/hazelcast/latest/[reference documentation].
104
104
====
105
105
106
106
NOTE: If `HazelcastSessionSerializer` is preferred, it needs to be configured for all Hazelcast cluster members before they start.
NOTE: By default, Hazelcast runs in embedded mode with your application.
164
-
However, if you want to connect to a standalone instance instead, you can configure it by following the instructions in the https://docs.hazelcast.org/docs/{hazelcast-version}/manual/html-single/index.html#hazelcast-configuration[reference documentation].
164
+
However, if you want to connect to a standalone instance instead, you can configure it by following the instructions in the https://docs.hazelcast.com/hazelcast/latest/getting-started/get-started-cli[reference documentation].
165
165
166
166
You should now be able to access the application at http://localhost:8080/
167
167
@@ -188,9 +188,9 @@ You can view the cookies (with https://developers.google.com/web/tools/chrome-de
188
188
189
189
=== Interacting with the Data Store
190
190
191
-
You can remove the session by using https://docs.hazelcast.org/docs/{hazelcast-version}/manual/html-single/index.html#hazelcast-java-client[a Java client],
192
-
https://docs.hazelcast.org/docs/{hazelcast-version}/manual/html-single/index.html#other-client-implementations[one of the other clients], or the
@@ -203,7 +203,7 @@ For example, to remove the session by using the management center console after
203
203
----
204
204
====
205
205
206
-
TIP: The Hazelcast documentation has instructions for https://docs.hazelcast.org/docs/{hazelcast-version}/manual/html-single/index.html#executing-console-commands[the console].
206
+
TIP: The Hazelcast documentation has instructions for https://docs.hazelcast.com/hazelcast/latest/clients/clc[the console].
207
207
208
208
Alternatively, you can also delete the explicit key. Enter the following into the console, being sure to replace `7e8383a4-082c-4ffe-a4bc-c40fd3363c5e` with the value of your `SESSION` cookie:
209
209
@@ -218,7 +218,7 @@ Now visit the application at http://localhost:8080/ and observe that we are no l
218
218
==== Using the REST API
219
219
220
220
As described in the section of the documentation that cover other clients, there is a
For example, you could delete an individual key as follows (being sure to replace `7e8383a4-082c-4ffe-a4bc-c40fd3363c5e` with the value of your SESSION cookie):
0 commit comments