注:その後の調査により、この質問は完全に再構成されました。
シロの件名から値を取得しようとしていますPrincipalCollection
。コレクションに2つのプリンシパルを追加しました。Username
およびUUID
。これらを思い出そうとすると、サイズ= 1になり、これはサイズ=2SimplePrincipalCollection
のプリンシパルを持ちます。LinkedHashMap
質問は、プリンシパルを直接取得するにはどうすればよいですか?
この目的のために複数の原則を追加する必要はありません。必要なすべての情報を含む単純なオブジェクト (POJO) を作成し、それを唯一の原則として使用できます。
public class MyRealm extends JdbcRealm {
...
enter code here
@Override
protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {
SimpleAuthenticationInfo info = null;
try {
//GET USER INFO FROM DB etc. here
MyPrinciple USER_OBJECT = new MyPrinciple();
USER_OBJECT.setId(UUID);
USER_OBJECT.setUsername(username);
info = new SimpleAuthenticationInfo(USER_OBJECT, password.toCharArray(), getName());
} catch (IOException | SQLException e) {
logger.error(message, e);
throw new AuthenticationException(message, e);
}
return info;
}
次に、ログインしているユーザーのユーザー情報が必要な場合は、単純に getPrinciple() を呼び出して、ユーザー クラス (POJO) にキャストした後、その getter メソッドを使用できます。
MyPrinciple LoggedInUser = (MyPrinciple ) SecurityUtils.getSubject().getPrinciple();
long uid = LoggedInUser.getId();
String username = LoggedInUser.getUsername();