From 2161f966de7138a7f095a8ad0e1c638a9df3fb1d Mon Sep 17 00:00:00 2001 From: mikemassa84 Date: Wed, 12 Jul 2017 10:53:59 -0500 Subject: [PATCH] Update grails3.adoc Add a note about spring-session and grails flash scope, with link to stackoverflow answer. --- 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 5e7d3f0a..0eabd615 100644 --- a/docs/src/docs/asciidoc/guides/grails3.adoc +++ b/docs/src/docs/asciidoc/guides/grails3.adoc @@ -128,3 +128,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