<%
request.setAttribute("rkey", "rvalue");
session.setAttribute("skey", "svalue");
application.setAttribute("akey", "avalue");
%>
获取 request 中的数据:${requsetScope.rkey }
<br><br>
获取 session 中的数据:${sessionScope.skey }
<br><br>
获取 application 中的数据:${applicationScope.akey }
获取 request 中的数据:
获取 session 中的数据:svalue
获取 application 中的数据:avalue