Servlet(サーブレット)リファレンス(逆引き)

Servlet(サーブレット)リファレンス
 
Web struts.wasureppoi.com
Principalオブジェクトをを取得する:HttpServletRequest#getUserPrincipal()
スポンサード リンク

Principalオブジェクトをを取得するには、HttpServletRequest#getUserPrincipal()を使用する。

構文
javax.servlet.http.HttpServletRequest
 public java.security.Principal getUserPrincipal( )
説明
getUserPrincipalメソッドは、リクエストのユーザが認証されている場合は、java.security.Principal オブジェクトを返します。 。

リクエストが認証されていない場合は nullを返します。
  
例1) リクエストのユーザのjava.security.Principal オブジェクトを取得する。

public class SampleServlet extends HttpServlet {

  public void doGet( HttpServletRequest request, HttpServletResponse response )
      throws ServletException,IOException {

    response.setContentType("text/html;charset=Windows-31J");

    PrintWriter out = response.getWriter();
    out.println("<html><body>");
    out.println("UserPrincipal=" + request.getUserPrincipal());
    out.println("</body></html>");
   }
}



スポンサード リンク


認証情報の種類を取得する:HttpServletRequest#getAuthType()
ユーザーのログイン名を取得する:HttpServletRequest#getRemoteUser()
Principalオブジェクトをを取得する:HttpServletRequest#getUserPrincipal()
ロールメンバか確認する:HttpServletRequest#isUserInRole()

Servletへ
忘れっぽいエンジニアのJakarta Strutsリファレンス TOPへ