首页 > 编程 > JSP > 正文

JSP内置对象(下)

2019-11-14 23:08:45
字体:
来源:转载
供稿:网友
jsp内置对象(下)


JSP中共有9大内置对象:

  1. out对象
  2. requset对象
  3. response对象
  4. session对象
  5. pageContext对象
  6. application对象
  7. config对象
  8. page对象
  9. exception对象

JSP内置对象(上):http://wxmimperio.coding.io/?p=280


5. pageContext对象

pageContext对象被封装成javax.servlet.jsp.pageContext接口,他为JSP页面包装页面的上下文,管理对属于JSP中特殊可见部分中已命名对象的访问。它的创建和初始化都是由容器完成的,pageContext对象可以访问到本页面所在的session,也可以去本页面 所在的application的某一属性,pageContext对象相当于页面中所有功能的集成。JSP页面里可以直接使用pageContext对象的句柄,pageContext对象的getXXX()、setXXX()和findXXX()方法可以用来根据不同的对象范围实现对这些对象的管理。

常用的方法:

  • forward(java.lang,String relativeUrlPath):把页面重定向到另外一个页面或者Servlet组件
  • getRequset():返回当前的requset对象
  • getResponse():返回当前的response对象
  • getServletConfig():返回当前页面的ServletConfig对象
  • getServletContext():返回ServletContext对象,这个对象对所有的页面都是共享的
  • getSession():返回当前页面的Session对象
  • setAttribute():用来设置默认页面范围,或特定对象范围之中的已命名对象
  • getAttribute(java.lang.String name[,int scope]):scope参数是可选的,用来检索一个特定的已命名的对象范围,并且还可以通过调用getAttributeNamesInScope()方法,检索对某个特定范围的每个属性String字符串名称的枚举

代码:

pageContextForm.jsp

  • <formmethod="post"action="pageContextObject.jsp">
  • <table>
  • <tr>
  • <td>name:</td>
  • <td><inputtype="text"name="name"></td>
  • </tr>
  • <trcolspan="2">
  • <td><inputtype="submit"value="提交"></td>
  • </tr>
  • </table>
  • </form>

pageContextObject.jsp

  • <%
  • //通过pageContext.getRequest方法来获取request对象
  • ServletRequestreq=pageContext.getRequest();
  • Stringname=req.getParameter("name");
  • out.PRintln("name="+name+"<br>");
  • //pageContext.getServletConfig方法
  • out.println("ServletConfig="+pageContext.getServletConfig());
  • //pageContext.setAttribute方法
  • pageContext.setAttribute("username",name);
  • //pageContext.getServletContext方法
  • pageContext.getServletContext().setAttribute("sharevalue","多个页面共享");
  • //pageContext.getSession方法
  • pageContext.getSession().setAttribute("sessionvalue","只有在session中才是共享的");
  • out.println("<br>pageContext.getAttributte('username')=");
  • //pageContext.getAttribute方法
  • out.println(pageContext.getAttribute("username"));
  • /*//pageContext.forward方法
  • pageContext.forward("pageContext2.jsp");*/
  • %>
  • <html>
  • <head>
  • <title>pageContext内置对象</title>
  • </head>
  • <body>
  • <ahref="pageContext2.jsp">NEXT--></a>
  • </body>
  • </html>

pageContext2.jsp

  • <%
  • out.println("<br>pageContext.getAttribute('username')=");
  • out.println(pageContext.getAttribute("username"));
  • out.println("<br>pageContext.getSession.getAttribute('sessionvalue')=");
  • out.println(pageContext.getSession().getAttribute("sessionvalue"));
  • out.println("<br>pageContext.getServletContext.getAttribute('sharevalue')=");
  • out.println(pageContext.getServletContext().getAttribute("sharevalue"));
  • %>

PS:

  • pageContext属性默认在当前页面时共享的
  • session中的属性在当前session中是共享的
  • ServletContext对象中的属性对所有页面都是共享的

6.application对象

application对象为多个应用程序保存信息,对于一个容器而言,每个用户都共享使用一个application对象,在任何地方对application对象属性的操作,都将影响到其他用户对此的访问,这和session对象是不同的。启动服务器后就会自动创建application对象,这个对象会一直保存,直到服务器关闭,application对象是ServletContext类的一个实例。

常用的方法:

  • getAttributeNames():返回所有的application对象的属性的名字,其结果是一个枚举类型的实例
  • getServletInfo():返回Servlet编译器的版本信息
  • getAttribute(String name):返回由name指定的名字的application对象的属性值
  • setAttribution(String name,Object object):设置由name指定名字的application对象的属性值object

代码:(简单计数器

applicationCount.jsp

  • <%
  • //计数器设置
  • intcount=0;
  • /*counter_name为计数器的名字
  • 对于不同的页面,使用不同的计数器名字,这样就可以为不同的页面进行计数*/
  • Stringcounter_name=request.getParameter("counter_name");
  • try{
  • //application.getAttribute方法
  • count=Integer.parseInt((application.getAttribute(counter_name).toString()));
  • }catch(Exceptione){
  • }
  • out.println("此页面访问了"+count+"次");
  • count++;
  • //application.setAttribute方法
  • application.setAttribute(counter_name,newInteger(count));
  • application.setAttribute("username","admin");
  • application.setAttribute("passWord","123456");
  • %>

applicationObject.jsp

  • <body>
  • <%--通过include指令把appicationCount页面代码引入--%>
  • <jsp:includepage="appicationCount.jsp">
  • <jsp:paramname="counter_name"value="applicationObject"></jsp:param>
  • </jsp:include>
  • <br>从application获得所有属性=
  • <%
  • Enumeratione=application.getAttributeNames();
  • while(e.hasMoreElements()){
  • out.println(e.nextElement()+"&nbsp;&nbsp;");
  • }
  • %>
  • <br>Servlet编译器的版本信息:<%=getServletInfo()%>
  • </body>

7.config对象

config对象被封装成javax.servlet.ServletConfig接口,他表示Servlet的配置,在一个Servlet初始化时,jsp引擎向他传递信息用的,此信息包括Servlet初始化时所要用到的参数以及服务器的有关信息。

常用的方法:

  • getServletContext():返回执行者的Servlet上下文
  • getServletName():返回Servlet的名字
  • getInitParameter(String name):返回名字为name的初始参数的值
  • getInitParameterNames():返回这个JSP的所有的初始参数的名字

代码:(上面application对象写的计数器有个缺陷,就是当服务器重启后,计数器就会从0重新开始,通过在服务器设置计数的初始值来解决)

configObject.jsp

  • <%
  • intorg=0;
  • intcount=0;
  • try{
  • //config.getInitParameter方法
  • org=Integer.parseInt(config.getInitParameter("counter"));
  • }catch(Exceptione){
  • out.println("org:"+e);
  • }
  • try{
  • count=Integer.parseInt((application.getAttribute("config_counter").toString()));
  • }catch(Exceptione){
  • out.println("config_counter"+e);
  • }
  • if(count<org)count=org;
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表