我在我的动作/控制器类中设置一些请求值,如下所示:
HttpServletRequest request = (HttpServletRequest) context.getExternalContext().getNativeRequest();
request.setAttribute("testKey", "testValue");
但是当我试图从 JSP 中检索它时,我得到了 null 值。
<%
String testKey = ""+request.getAttribute("testKey");
%>
有什么想法,请帮忙。