I have come across spring-boot and intend to add a filter chain for incoming request.
Here is the Application:
package example.hello;
import org.springf
I would just like to clarify a little more on what Gangadhar suggested. You can try adding :
filterChain.doFilter(servletRequest, servletResponse);
in doFilter method of your filter classes.This will create chaining of the filters.
Adding following line of code in GreetingFilter works
filterChain.doFilter(servletRequest, servletResponse);