From 8ed0999ad35248b0a85578a093ce1954caf76fc2 Mon Sep 17 00:00:00 2001 From: mikemassa84 Date: Wed, 12 Jul 2017 17:53:59 +0200 Subject: [PATCH] Update grails3.adoc Add a note about spring-session and grails flash scope, with link to stackoverflow answer. Closes gh-980 --- docs/src/docs/asciidoc/guides/grails3.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/src/docs/asciidoc/guides/grails3.adoc b/docs/src/docs/asciidoc/guides/grails3.adoc index 30b31e78..1f3c7e6b 100644 --- a/docs/src/docs/asciidoc/guides/grails3.adoc +++ b/docs/src/docs/asciidoc/guides/grails3.adoc @@ -127,3 +127,6 @@ Alternatively, you can also delete the explicit key. Enter the following into yo $ redis-cli del spring:session:sessions:7e8383a4-082c-4ffe-a4bc-c40fd3363c5e Now visit the application at http://localhost:8080/test/index and observe that we are no longer authenticated. + +NOTE: Spring Session will not work with grails flash scope without additional work. + +See this answer for an explanation: https://stackoverflow.com/a/43311427