java - ContainerRequestFilter method not being called - Stack Overflow
I found an alternative to ContainerRequestFilter that actually works! It's javax.servlet.Filter. Extending from this class, all I had to do was annotate it with the following code and the filtering mechanism works like a charm.
@WebFilter(filterName = "AuthenticationFilter", urlPatterns = { "/*" })
Read full article from java - ContainerRequestFilter method not being called - Stack Overflow
No comments:
Post a Comment