thymeleaf中如何实现jsp中pageContext.getAttribute()的功能
时间: 2024-05-31 08:09:02 浏览: 144
在Thymeleaf中,可以使用`#request`来获取request对象,然后使用`#request.getAttribute('attributeName')`来获取请求中的属性值。如果要获取session中的属性值,可以使用`#session`来获取session对象,然后使用`#session.getAttribute('attributeName')`来获取session中的属性值。如果要获取application中的属性值,可以使用`#servletContext`来获取ServletContext对象,然后使用`#servletContext.getAttribute('attributeName')`来获取application中的属性值。
阅读全文