I've been using Spring Security 3.0 for our website login mechanism using a dedicated login webpage. Now I need that login webpage to instead be a lightbox/popup window on every webpage in our site where upon logging in I get an AJAX result whether it was successful or not. What's the best way to go about this with Spring Security and Spring webmvc 3.0?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
At the client-side you may simulate a normal form submission to your login url via ajax. For example, in jQuery:
At the server side, you may customize
|
|||
|
|
I did something similar (thanks axtavt):
I chose to extend the simple success handler for the default behavior on non-Ajax requests. Here's the XML to make it work:
|
||||
|
|