JSP使用Servlet過濾器進行身分識別驗證的方法_JSP編程

來源:互聯網
上載者:User

本文執行個體講述了JSP使用Servlet過濾器進行身分識別驗證的方法。分享給大家供大家參考,具體如下:

1、Servlet過濾器的作用描述

(1)在HttpServletRequest到達Servlet 之前,攔截客戶的HttpServletRequest。
根據需要檢查HttpServletRequest,也可以修改HttpServletRequest頭和資料。
(2)在HttpServletResponse 到達用戶端之前,攔截HttpServletResponse。
根據需要檢查HttpServletResponse,可以修改HttpServletResponse頭和資料。

2、應用Servlet過濾器進行身分識別驗證

假設網站根目錄下的login1.htm、longin1.jsp用於使用者登入,而chap08目錄下的檔案需要使用者登入後才能訪問。

(1)編寫Servlet過濾器

@WebFilter("/FilterStation")public class FilterStation extends HttpServlet implements Filter {private FilterConfig filterConfig;public FilterStation() {super();}public void destroy() {}public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {HttpSession session=((HttpServletRequest)request).getSession();response.setCharacterEncoding("gb2312");if(session.getAttribute("me")==null){PrintWriter out=response.getWriter();out.print("<script>alert('請登入!');location.href='../login1.htm'</script>");}else{// pass the request along the filter chainchain.doFilter(request, response);}}public void init(FilterConfig fConfig) throws ServletException {// TODO Auto-generated method stubthis.filterConfig=fConfig;}}

(2)配置web.xml

<filter><filter-name>filterstation</filter-name><filter-class>zhou.FilterStation</filter-class></filter><filter-mapping><filter-name>filterstation</filter-name><url-pattern>/chap08/*</url-pattern></filter-mapping>

(3)login1.htm代碼

<html><head><title>使用者登入</title></head><body><form method="POST" action="login1.jsp"><p>使用者名稱:<input type="text" name="user" size="18"></p><p>密碼:<input type="text" name="pass" size="20"></p><p><input type="submit" value="提交" name="ok"><input type="reset" value="重設" name="cancel"></p></form></body></html>

(4)login1.jsp代碼

<%@ page contentType="text/html;charset=GB2312" %><html><head><title>Session 應用示範</title></head><% if (request.getParameter("user")!=null && request.getParameter("pass")!=null){String strName=request.getParameter("user");String strPass=request.getParameter("pass");if (strName.equals("admin") && strPass.equals("admin")){session.setAttribute("login","OK");session.setAttribute("me",strName);response.sendRedirect("chap08/welcome.jsp");}else{out.print("<script>alert('使用者名稱或密碼錯誤');location.href='login1.htm'</script>");}}%></html>

希望本文所述對大家JSP程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.