I create a new filter in the web initializer in my app, and I need to use that when enter to a certain url
servletContext.addFilter("securityForDetails", DelegatingFilterProxy.class )
.addMappingForUrlPatterns(null, false, "/#/list");
the problem is that when the I enter to this url, the filter never activates. But when I removed the sharp character ("/list")
it works.
I know it works with a regular expression, and I tried /*/list
for example, but again, this doesn't work.
How can I make it work ?