Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在过滤器中为请求添加了一个属性。我们在 jsp 页面中使用 JSF 标签。
我想在 jsp 中获取请求属性,因为我使用的 JSF 标签脚本不起作用。
任何人都可以帮助在带有 JSF 标签的 JSP 页面中直接使用什么标签来获取请求属性。 我不想在托管 bean 中设置它。
过滤代码:httpReq.setAttribute("xyz", "name");
我想在 JSF 页面中检索这个值。请帮助分享您的想法。
-基兰
它只是在 EL 范围内通过属性名称以通常的方式可用,如#{xyz}.
#{xyz}
请注意,JSF 将请求范围内的托管 bean 也存储为请求属性!