Jestem stosunkowo nowy w zabezpieczeniach Spring and Spring.
Próbowałem napisać program, w którym musiałem uwierzytelnić użytkownika na końcu serwera za pomocą zabezpieczeń Spring,
Wymyśliłem:
public class CustomAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider{
@Override
protected void additionalAuthenticationChecks(UserDetails userDetails, UsernamePasswordAuthenticationToken usernamePasswordAuthenticationToken)
throws AuthenticationException
{
System.out.println("Method invoked : additionalAuthenticationChecks isAuthenticated ? :"+usernamePasswordAuthenticationToken.isAuthenticated());
}
@Override
protected UserDetails retrieveUser(String username,UsernamePasswordAuthenticationToken authentication) throws AuthenticationException
{
System.out.println("Method invoked : retrieveUser");
//so far so good, i can authenticate user here, and throw exception if not authenticated!!
//THIS IS WHERE I WANT TO ACCESS SESSION OBJECT
}
}
Mój przypadek polega na tym, że kiedy użytkownik jest uwierzytelniany, muszę umieścić atrybut taki jak:
session.setAttribute("userObject", myUserObject);
myUserObject jest obiektem pewnej klasy, do którego mam dostęp w całym kodzie serwera w ramach wielu żądań użytkowników.