FilterServlet.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:4k
源码类别:

Java编程

开发平台:

Java

  1. /*
  2.  * @(#)FilterServlet.java 1.3 02/12/20
  3.  *
  4.  * Copyright 2001-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in the
  15.  *   documentation and/or other materials provided with the distribution.
  16.  * 
  17.  * Neither the name of Sun Microsystems, Inc. or the names of contributors
  18.  * may be used to endorse or promote products derived from this software
  19.  * without specific prior written permission.
  20.  * 
  21.  * This software is provided "AS IS," without a warranty of any kind. ALL
  22.  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
  23.  * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
  24.  * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND
  25.  * ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES OR LIABILITIES
  26.  * SUFFERED BY LICENSEE AS A RESULT OF  OR RELATING TO USE, MODIFICATION
  27.  * OR DISTRIBUTION OF THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL
  28.  * SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  29.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
  30.  * DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
  31.  * ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS
  32.  * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  33.  * 
  34.  * You acknowledge that Software is not designed, licensed or intended
  35.  * for use in the design, construction, operation or maintenance of any
  36.  * nuclear facility.
  37.  *
  38.  */
  39. package demo;
  40. import java.io.*;
  41. import javax.servlet.*;
  42. import javax.servlet.http.*;
  43. /**
  44.  * This servlet is used to determine whether the user is logged in before
  45.  * forwarding the request to the selected URL.
  46.  */
  47. public class FilterServlet extends HttpServlet {
  48.     /**
  49.      * This method handles the "POST" submission from two forms: the
  50.      * login form and the message compose form.
  51.      */
  52.     public void doPost(HttpServletRequest request, 
  53.                        HttpServletResponse  response) 
  54.                        throws IOException, ServletException {
  55.         String servletPath = request.getServletPath();
  56.         servletPath = servletPath.concat(".jsp");
  57.         
  58.         getServletConfig().getServletContext().
  59.             getRequestDispatcher("/" + servletPath).forward(request, response);
  60.     }
  61.     /**
  62.      * This method handles the GET requests from the client.
  63.      */
  64.     public void doGet(HttpServletRequest request, 
  65.                       HttpServletResponse  response)
  66.                       throws IOException, ServletException {
  67.       
  68.         // check to be sure we're still logged in 
  69.         // before forwarding the request.
  70.         HttpSession session = request.getSession();
  71.         MailUserBean mailuser = (MailUserBean)session.getAttribute("mailuser");
  72.         String servletPath = request.getServletPath();
  73.         servletPath = servletPath.concat(".jsp");
  74.         
  75.         if (mailuser.isLoggedIn())
  76.             getServletConfig().getServletContext().
  77.                 getRequestDispatcher("/" + servletPath).
  78.                 forward(request, response);
  79.         else
  80.             getServletConfig().getServletContext().
  81.                 getRequestDispatcher("/index.html").
  82.                 forward(request, response);
  83.     }
  84. }