26

在我的应用程序中,我想应用一个过滤器,但我不希望所有请求都必须转到该过滤器。

这将是一个性能问题,因为我们已经有了一些其他过滤器。

我希望我的过滤器仅适用于 HTTP POST 请求。有什么办法吗?

4

1 回答 1

34

没有现成的功能。AFilter在应用于所有 HTTP 方法时没有开销。但是,如果您在Filter代码中有一些有开销的逻辑,则不应将该逻辑应用于不需要的 HTTP 方法。

这是示例代码:

public class HttpMethodFilter implements Filter
{
   public void init(FilterConfig filterConfig) throws ServletException
   {

   }

   public void doFilter(ServletRequest request, ServletResponse response,
       FilterChain filterChain) throws IOException, ServletException
   {
       HttpServletRequest httpRequest = (HttpServletRequest) request;        
       if(httpRequest.getMethod().equalsIgnoreCase("POST")){

       }
       filterChain.doFilter(request, response);
   }

   public void destroy()
   {

   }
}
于 2012-06-18T06:00:45.733 回答