From 53cb6c17e403ef402ed0c8b933b17fcda5762999 Mon Sep 17 00:00:00 2001 From: "Hanson, Tristan" Date: Wed, 11 Oct 2017 21:49:25 -0500 Subject: [PATCH] gh-4482 - Updating docs for `ConcurrentSessionFilter` configuration example --- docs/manual/src/docs/asciidoc/index.adoc | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/manual/src/docs/asciidoc/index.adoc b/docs/manual/src/docs/asciidoc/index.adoc index e549ef2845..21cba98a0a 100644 --- a/docs/manual/src/docs/asciidoc/index.adoc +++ b/docs/manual/src/docs/asciidoc/index.adoc @@ -4597,7 +4597,7 @@ To use concurrent session support, you'll need to add the following to `web.xml` -In addition, you will need to add the `ConcurrentSessionFilter` to your `FilterChainProxy`. The `ConcurrentSessionFilter` requires two properties, `sessionRegistry`, which generally points to an instance of `SessionRegistryImpl`, and `expiredUrl`, which points to the page to display when a session has expired. A configuration using the namespace to create the `FilterChainProxy` and other default beans might look like this: +In addition, you will need to add the `ConcurrentSessionFilter` to your `FilterChainProxy`. The `ConcurrentSessionFilter` requires two constructor arguments, `sessionRegistry`, which generally points to an instance of `SessionRegistryImpl`, and `sessionInformationExpiredStrategy`, which defines the strategy to apply when a session has expired. A configuration using the namespace to create the `FilterChainProxy` and other default beans might look like this: [source,xml] ---- @@ -4609,10 +4609,15 @@ In addition, you will need to add the `ConcurrentSessionFilter` to your `FilterC + + + + - - + +