2
0
Эх сурвалжийг харах

SEEC-255: Always create HttpSession before calling AuthenticationDetailsSource.

Ben Alex 19 жил өмнө
parent
commit
d8a56d4e60

+ 3 - 3
core/src/main/java/org/acegisecurity/ui/webapp/AuthenticationProcessingFilter.java

@@ -72,13 +72,13 @@ public class AuthenticationProcessingFilter extends AbstractProcessingFilter {
         UsernamePasswordAuthenticationToken authRequest = new UsernamePasswordAuthenticationToken(username,
                 password);
 
-        // Allow subclasses to set the "details" property
-        setDetails(request, authRequest);
-
         // Place the last username attempted into HttpSession for views
         request.getSession()
                .setAttribute(ACEGI_SECURITY_LAST_USERNAME_KEY, username);
 
+        // Allow subclasses to set the "details" property
+        setDetails(request, authRequest);
+
         return this.getAuthenticationManager().authenticate(authRequest);
     }