如何访问 JSP 中由 servlet 设置的请求属性?
我正在尝试检索由 JSP 页面中的 servlet 设置的属性值,但我只能幸运地使用 .我不确定我能做些什么不同的事情。也许它很简单,但我还无法管理它。${param}
public void execute(HttpServletRequest request, HttpServletResponse response) {
//there's no "setParameter" method for the "request" object
request.setAttribute("attrib", "attribValue");
RequestDispatcher rd = request.getRequestDispatcher("/Test.jsp");
rd.forward(request,response);
}
在JSP中,我一直在尝试检索“attribValue”,但没有成功:
<body>
<!-- Is there another tag instead of "param"??? -->
<p>Test attribute value: ${param.attrib}
</body>
如果我通过所有过程(调用页面,servlets和目标页面)传递一个参数,它的工作效果非常好。