快速业务通道

走上开放之路: ASP开发人员的J2EE基础(下) - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
uot;Foo"); // Place object in application scope application.setAttribute("Foo", foo); // Retrieve from application scope String applicationFoo = (String) application.getAttribute("Foo"); // Place object in page scope pageContext.setAttribute("Foo", foo); // Retrieve from page scope String pageFoo = (String) application.getAttribute("Foo"); // Place object in request scope request.setAttribute("Foo", foo); // Retrieve from request scope String requestFoo = (String) request.getAttribute("Foo"); %> ....

清单 31 中的例子的第一行是 page 指令,它允许您定义整个页面的属性。请注意 session 属性的使用,它决定了该页面是否要使得会话可用。如果将它设置为 true 却还没 有建立会话,那么新的会话就会为您创建。如果将它设置为 false,那么会话范围将在该 JSP 页面中不可用。(这个属性的面默认设置是 true,因此这里使用它是多余的,只是出于 说明目的。)

清单 32 是使用各种可用范围来存储和检索数据的 servlet 的一个例子。

清单 32. servlet 中的状态管理

public class MyServlet extends HttpServlet {   public void doGet(     HttpServletRequest request, HttpServletResponse response)     throws ServletException, IOException {     performTask(request, response);   }   public void doPost(HttpServletRequest request, HttpServletResponse response)     throws ServletException, IOException {     performTask(request, response);   }   /**    * Handles all HTTP GET and POST requests    *    * @param request Object that encapsulates the request to the servlet    * @param response Object that encapsulates the response from the servlet    */   public void performTask(     javax.servlet.http.HttpServletRequest req,     javax.servlet.http.HttpServletResponse res)     throws ServletException, IOException {     try {       // This is how you create a session if is has not been created yet       // Note that this will return the existing session if you''ve       // already created it        HttpSession session = req.getSession();      //This is how the application context is retrieved in a servlet      ServletContext application = getServletContext();        String foo = "I am a Foo";        session.setAttribute("Foo", foo);      // Place object in session scope session.setAttribute("Foo", foo);     // Retrieve from session scope String sessionFoo = (String) session.getAttribute("Foo");     // Place object in application scope application.setAttribute("Foo", foo);     // Retrieve from application scope String applicationFoo = (String) application.getAttribute("Foo");     // Place object in request scope request.setAttribute("Foo", foo);    // Retrieve from request scope   String requestFoo = (String) request.getAttribute("Foo");        ...     } catch (Throwable t) {      // All errors go to error page      throw new ServletException(t.g

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号