How to get session timeout value through Grails code

I want to know how can I get the session timeout value for my application

I set the session timeout value in the web.xml file and want to get this value using code like session.getSessionTimeout

if anyone knows pls posted here

I just need to know that it is definitely installed or not in web.xml for my grails application

+3
source share
1 answer

Try using session.maxInactiveInterval

+5
source

All Articles