赞
踩
jsp页面attr1的body写成如下部分:
<body> <% pageContext.setAttribute("pageContextAttr", "pageContextValue"); request.setAttribute("requestAttr", "requestValue"); session.setAttribute("sessionAttr", "sessionValue"); application.setAttribute("applicationAttr", "applicationValue"); %> <br> <br> pageContextAttr:<%= pageContext.getAttribute("pageContextAttr") %> <br> <br> requestAttr:<%= request.getAttribute("requestAttr") %> <br> <br> sessionAttr:<%= session.getAttribute("sessionAttr") %> <br> <br> applicationAttr:<%= pageContext.getAttribute("pageContextAttr") %> </body>
从运行结果我们可以得到结论,这几个域对象都可以设置属性值,并且可以获取属性值,不仅可以获取到自己设置的属性,也可以获取到其他人设置的属性。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。