尚无此功能。一个
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() { }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)