In my grails application running on tomcat 7, Somewhere I am invalidating the existing http session (session.invalidate()
) and creating a new session (request.getSession(true)
).
But my this new session is not getting reflected everywhere in grails application. Due to this I do get 'Session already invalidated
'.
I don't want to do request.getSession()
everywhere. I am just using 'session'.
Is there anything in Grails 1.3.7, so that this new session gets reflected every where in app.
Please let me know if you need more info.
Regards