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

Servlet(サーブレット)リファレンス
 
Web struts.wasureppoi.com
SSL通信かどうか判定する:HttpServletRequest#isSecure()
スポンサード リンク

SSL通信かどうか判定するには、HttpServletRequest#isSecure()を使用する。

構文
javax.servlet.http.HttpServletRequest
 public boolean isSecure( )
説明
isSecureメソッドは、SSL通信かどうかを、true/falseで返します。
  
例1) SSL通信かどうか判定する。

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


実行結果


スポンサード リンク


ローカルIPアドレスを取得する:HttpServletRequest#getLocalAddr()
ローカルホスト名を取得する:HttpServletRequest#getLocalName()
ローカルポート番号を取得する:HttpServletRequest#getLocalPort()
クライアントIPアドレスを取得する:HttpServletRequest#getRemoteAddr()
クライアントホスト名を取得する:HttpServletRequest#getRemoteHost()
クライアントポート番号を取得する:HttpServletRequest#getRemotePort()
サーバーホスト名を取得する:HttpServletRequest#getServerName()
サーバーポート番号を取得する:HttpServletRequest#getServerPort()
SSL通信かどうか判定する:HttpServletRequest#isSecure()
リクエストのプロトコル/バージョン情報を取得する:HttpServletRequest#getProtocol()

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