Web許可權驗證過濾器

來源:互聯網
上載者:User

本文只是描述了一個比較簡單的入門級的許可權過濾器

實際上更好的參考實現有兩款產品:Apache的Shiro(其前身是JSecurity)和SpringSecurity


下面是Web工程中的web.xml

<?xml version="1.0" encoding="UTF-8"?><web-app version="2.5"xmlns="http://java.sun.com/xml/ns/javaee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"><filter><filter-name>AuthenticationFilter</filter-name><filter-class>com.jadyer.Filter.AuthenticationFilter</filter-class><init-param><param-name>url</param-name><param-value>/admin/login.jsp</param-value></init-param></filter><filter-mapping><filter-name>AuthenticationFilter</filter-name><url-pattern>/admin/secure/*</url-pattern></filter-mapping>    <error-page>    <error-code>404</error-code>    <location>/WEB-INF/404.html</location>    </error-page>    <error-page>    <error-code>500</error-code>    <location>/WEB-INF/500.html</location>    </error-page>    <error-page>    <exception-type>javax.servle.ServletException</exception-type>    <location>/WEB-INF/error.html</location>    </error-page>    <error-page>    <exception-type>java.lang.NullPointerException</exception-type>    <location>/WEB-INF/error.html</location>    </error-page></web-app>

下面是用於許可權驗證的過濾器AuthenticationFilter.java

package com.jadyer.Filter;import java.io.IOException;import javax.servlet.Filter;import javax.servlet.FilterChain;import javax.servlet.FilterConfig;import javax.servlet.ServletException;import javax.servlet.ServletRequest;import javax.servlet.ServletResponse;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;/** * 許可權驗證 */public class AuthenticationFilter implements Filter {private String url = "/"; //代表根目錄public void destroy() {}/** * 擷取web.xml中設定的參數url的值 * @see 即讀取web.xml中的<param-name>url</param-name> */public void init(FilterConfig config) throws ServletException {url = config.getInitParameter("url");}public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {//這兩行的強制類型轉換是必不可少的HttpServletRequest req = (HttpServletRequest) request;HttpServletResponse res = (HttpServletResponse) response;//如果是普通使用者或者管理員session已到期,則轉到指定頁面並返回,而不再執行下一個過濾鏈if (null == req.getSession().getAttribute("guesbook.admin.username")) {res.sendRedirect(req.getContextPath() + url);} else {chain.doFilter(request, response);}}}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.