I am trying to understand Spring security which involves method security and URL based security . URL based security is completely based on Servlet Filters
. There are some scenarios when Spring security deals with exception thrown by filters chain to do its work.
I know how filters are executed by Servlet Container but I am particularly interested in how filterChain
handle exceptions thrown by doFilter
method in filter chain.