filter java exclude_Java网络编程如何从Filter中排除部分url

Java如何从Filter中排除部分url,默认情况下,只要您为过滤器定义了网址格式,过滤器就不支持排除特定的网址格式,那么与该格式匹配的任何请求都会被过滤器处理,而不会有例外。

从过滤器中排除网址的最简单方法是将您的过滤器映射到特定的模式。在早期开发阶段完成时,这是可行的,但是如果您修改生产环境中现有过滤器的URL模式,则必须重新映射所有现有的servlet URL才能达到目的,否则这可能是一个繁琐的过程。

在本教程中,我们将演示如何以编程方式向现有过滤器添加排除功能。

1-自定义过滤器

自定义过滤器是您可以控制的过滤器。即您拥有修改其源代码的所有权利。

假设我们有一个现有的Web应用程序,它通过LDAP来验证用户请求。所有servlet请求都通过映射到/ *的LDAPAuthenticationFilter传递,如下所示:

LDAPAuthenticationFilter

com.programmer.gate.filters.LDAPAuthenticationFilter

LDAPAuthenticationFilter

/*

我们的过滤器只是验证请求,然后调用  chain.doFilter():

LDAPAuthenticationFilter.java

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;

public class LDAPAuthenticationFilter implements Filter{

public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain)

throws IOException, ServletException {

// Authenticate the request through LDAP

System.out.println("Authenticating the request through LDAP");

// Forward the request to the next filter or servlet in the chain.

chain.doFilter(req, resp);

}

public void init(FilterConfig filterConfig) throws ServletException {

}

public void destroy() {

// TODO Auto-generated method stub

}

}

现在,假设我们要创建一个需要简单数据库认证的servlet,并且不需要通过LDAP。我们首先考虑创建一个新过滤器并将其映射到新servlet的特定URL模式。

所以我们创建一个名为DatabaseAuthenticationFilter的新过滤器,它简单地通过数据库验证请求,然后调用  chain.doFilter():

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;

public class DatabaseAuthenticationFilter implements Filter{

public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain)

throws IOException, ServletException {

// Authenticate the request through database then forward the request to the next filter or servlet in the chain

System.out.println("Authenticating the request through database");

chain.doFilter(req, resp);

}

public void init(FilterConfig arg0) throws ServletException {

// TODO Auto-generated method stub

}

public void destroy() {

// TODO Auto-generated method stub

}

}

我们在web.xml中定义我们的过滤器,以仅处理以/ DatabaseAuthenticatedServlet开头的特定URL :

DatabaseAuthenticationFilter

com.programmer.gate.filters.DatabaseAuthenticationFilter

DatabaseAuthenticationFilter

/DatabaseAuthenticatedServlet/*

这里的问题是像/ DatabaseAuthenticatedServlet这样的请求也会匹配根URL模式“/ *”,即我们的请求会通过2个认证过程:LDAP和数据库,排序取决于哪个过滤器首先在web.xml下定义  。

为了解决这个问题,我们需要修改LDAPAuthenticationFilter,以便排除以/ DatabaseAuthenticatedServlet开头的URL 。通常情况下,人们会静态检查doFilter()方法中的请求的servlet URL,并在发现后直接绕过认证过程。

这里我们更进一步,实现一个更动态的解决方案,它允许我们通过web.xml管理排除的URL 。

以下是将排除功能添加到LDAPAuthenticationFilter的步骤:

添加名为excludedUrls的List 类型的新字段:

private List excludedUrls;

在init()方法内部,使用FilterConfig读取名为excludedUrls的配置属性,该属性应该用逗号分隔,以便我们排除尽可能多的URL。

public void init(FilterConfig filterConfig) throws ServletException {

String excludePattern = filterConfig.getInitParameter("excludedUrls");

excludedUrls = Arrays.asList(excludePattern.split(","));

}

修改doFilter()以检查请求的URL是否属于预定义排除的URL列表,如果是这样,那么只需将请求转发到链中的下一个过滤器或servlet,否则执行认证逻辑。

public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain)

throws IOException, ServletException {

String path = ((HttpServletRequest) req).getServletPath();

if(!excludedUrls.contains(path))

{

// Authenticate the request through LDAP

System.out.println("Authenticating the request through LDAP");

}

// Forward the request to the next filter or servlet in the chain.

chain.doFilter(req, resp);

}

现在在web.xml中,您可以控制要从LDAP身份验证中排除哪个URL,而无需更改任何代码:

LDAPAuthenticationFilter

com.programmer.gate.filters.LDAPAuthenticationFilter

excludedUrls

/DatabaseAuthenticatedServlet,/UnAuthenticatedServlet

这是在添加排除功能后LDAPAuthenticationFilter的代码样子:

import java.io.IOException;

import java.util.Arrays;

import java.util.List;

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;

public class LDAPAuthenticationFilter implements Filter{

private List excludedUrls;

public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain)

throws IOException, ServletException {

String path = ((HttpServletRequest) req).getServletPath();

if(!excludedUrls.contains(path))

{

// Authenticate the request through LDAP

System.out.println("Authenticating the request through LDAP");

}

// Forward the request to the next filter or servlet in the chain.

chain.doFilter(req, resp);

}

public void init(FilterConfig filterConfig) throws ServletException {

String excludePattern = filterConfig.getInitParameter("excludedUrls");

excludedUrls = Arrays.asList(excludePattern.split(","));

}

public void destroy() {

// TODO Auto-generated method stub

}

}

2-第三方过滤器

第三方过滤器是您无法控制的过滤器。即你不能修改他们的源代码。

在本节中,我们稍微修改我们的示例,并使用CAS认证而不是LDAP。这是我们如何在web.xml中定义我们的CAS认证过滤器:

CAS Authentication Filter

org.jasig.cas.client.authentication.AuthenticationFilter

casServerLoginUrl

https://localhost:8443/cas/login

serverName

localhost

CAS Authentication Filter

/*

CAS认证是通过第三方库完成的,现在为了支持数据库认证,我们不能修改CAS的源代码,就像我们在前面的LDAP例子中所做的那样。

从第三方过滤器中排除URL的解决方案是使用新的自定义过滤器来包装它,该自定义过滤器仅添加排除功能并将过滤器逻辑委托给包装的类。

以下是将排除功能添加到CAS认证的步骤:

创建一个名为CASCustomAuthenticationFilter的新过滤器,如下所示:

public class CASCustomAuthenticationFilter implements Filter{

private AuthenticationFilter casAuthenticationFilter = new AuthenticationFilter();

private List excludedUrls;

public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain)

throws IOException, ServletException {

String path = ((HttpServletRequest) req).getServletPath();

if(!excludedUrls.contains(path))

{

// Authenticate the request through CAS

casAuthenticationFilter.doFilter(req,resp,chain);

}

// Forward the request to the next filter or servlet in the chain.

chain.doFilter(req, resp);

}

public void init(FilterConfig arg0) throws ServletException {

String excludePattern = filterConfig.getInitParameter("excludedUrls");

excludedUrls = Arrays.asList(excludePattern.split(","));

casAuthenticationFilter.init();

}

public void destroy() {

casAuthenticationFilter.destroy();

}

}

我们的自定义过滤器通过合成包装了CAS认证过滤器,其主要目的是通过CAS来管理要认证的URL,而我们并未触及CAS认证过程。

在web.xml中,我们将过滤器定义更改为使用  CASCustomAuthenticationFilter而不是缺省的CAS实现:

CAS Authentication Filter

com.programmer.gate.filters.CASCustomAuthenticationFilter

casServerLoginUrl

https:localhost:8443/cas/login

serverName

localhost

excludeUrls

/DatabaseAuthenticatedServlet

CAS Authentication Filter

/*

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值