springで現在ログインしているユーザー情報を取得する方法は何ですか?

Springでは、現在ログインしているユーザー情報を取得するためにAuthenticationオブジェクトを使用することができます。SecurityContextHolder.getContext().getAuthentication()メソッドを使用してAuthenticationオブジェクトを取得し、その後、getPrincipal()メソッドを使用してユーザー情報を取得することができます。

以下はサンプルコードです。

import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder;

public class UserController {

    public User getCurrentUser() {
        Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
        if (authentication != null && authentication.getPrincipal() instanceof User) {
            return (User) authentication.getPrincipal();
        } else {
            // 用户未登录
            return null;
        }
    }
}

上記の例では、getCurrentUser()メソッドは現在ログインしているユーザーオブジェクトを返し、ユーザーがログインしていない場合はnullを返します。

注意すべき点は、上記のコードはユーザー情報がPrincipalオブジェクトに含まれていると仮定しているが、ユーザー情報が他の場所に保存されている場合は適切に調整する必要がある。

bannerAds