I would like to know whether is it possile to retrieve the session object and access its attributes from a Thymeleaf template without any controller code.
In Thymeleaf, session object can be easily accessed in a template:
session
${session.foo} // Retrieves the session atttribute 'foo' ${session.size()} ${session.isEmpty()} ${session.containsKey('foo')}
#ctx
${#ctx.httpSession}
Look at the Thymeleaf documentation for accessing different context objects: http://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#expression-basic-objects
2.1m questions
2.1m answers
60 comments
57.0k users