I currently have a user form login page in Spring Security 3 that submits its form data to the correct authentication url.
However, now I need to expand the process to support security issues after logging in, but before deleting the rest of the site.
I have several options for reading documentation, but I'm confused about the correct option.
Option 1: Keep the current login system and set up a special role that allows the user to access the security questions page. If they successfully complete the security issues process, add their correct roles to the security context.
Option 2: Subclass AbstractAuthenticationProcessingFilter and ask security questions as part of the login process. This is similar to spring -like, but I am stuck on how to maintain multiple pages for questions, disrupting the rest of the authentication structure.
source share