最佳答案
我对 春天和 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 是某个类的对象,我可以跨多个用户请求在整个服务器代码中访问它。