Accessing session attributes in Thymeleaf templates

痴心易碎 提交于 2019-11-27 02:52:28

问题


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.


回答1:


In Thymeleaf, session object can be easily accessed in a template:

  • with a session variable:
    ${session.foo} // Retrieves the session atttribute 'foo'
    ${session.size()}
    ${session.isEmpty()}
    ${session.containsKey('foo')}
  • with a #ctx object:
    ${#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



来源:https://stackoverflow.com/questions/20632134/accessing-session-attributes-in-thymeleaf-templates

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!