在我的应用程序中,我想应用过滤器,但我不希望所有请求都必须转到该过滤器。
这将是一个性能问题,因为我们已经有了一些其他过滤器。
我希望我的过滤器仅适用于HTTP POST请求。有什么办法吗?
答案 0 :(得分:31)
没有现成的功能。 Filter
在应用于所有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()
{
}
}