我正在尝试检索由 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>
如果我通过所有进程(调用页面、servlet 和目标页面)传递一个参数,它的效果非常好。