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

Servlet(サーブレット)リファレンス
 
Web struts.wasureppoi.com
ユーザーのログイン名を取得する:HttpServletRequest#getRemoteUser()
スポンサード リンク

ユーザーのログイン名を取得するには、HttpServletRequest#getRemoteUser()を使用する。

構文
javax.servlet.http.HttpServletRequest
 public String getRemoteUser( )
説明
getRemoteUserメソッドは、リクエストのユーザが認証されている場合はそのユーザのログイン名を返します。

リクエストが認証されていない場合は nullを返します。
  
例1) リクエストのユーザのログイン名を取得する。

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("RemoteUser=" + request.getRemoteUser());
    out.println("</body></html>");
   }
}



スポンサード リンク


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

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