Skip to content

Tag: servlet-filters

What is chain.doFilter doing in Filter.doFilter method?

In a Filter.doFilter method I made this call chain.doFilter. What is doFilter doing inside a doFilter? Isn’t it a recursive call? Answer Servlet Filters are an implementation of the Chain of responsibility design pattern. All filters are chained (in the order of their definition in web.xml). The chain.d…