私はSpringとSpringのセキュリティに比較的慣れていません。
Springセキュリティを使用してサーバー側でユーザーを認証する必要があるプログラムを作成しようとしていました。
私は次のことを思いついた:
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
}
}
私のユースケースは、ユーザーが認証されたときに、次のような属性を配置する必要があるというものです。
session.setAttribute("userObject", myUserObject);
myUserObjectは、複数のユーザー要求にわたってサーバーコード全体でアクセスできるクラスのオブジェクトです。