我试图通过检索在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和目的地页)传递一个参数,它的工作原理相当不错。