I am using Spring Security 3.0 with JSPs. I have created a RequireVerificationFilter that redirects unverified users to a \"verify your email\" page.
I added the fi
You have to do this inside the actual configuration xml (same place you have the
.
...
Something along those lines, you can specify a list of the filters you want to run and exclude those you don't (and "none" means none). You should not need to add tyour filter to the web.xml - only inline with the Spring Security filter chain.