0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

request という変数について

Posted at

request

request は、JavaのサーブレットやJSPなどのウェブアプリケーション開発で利用される特別なオブジェクトであり、HTTPリクエストに関連する情報へのアクセスができます。

これは、「暗黙オブジェクト」とよばれ、開発者が明示的に宣言する必要はありません。

具体的には、request オブジェクトは 「HttpServletRequest インターフェースのインスタンス」を指し示し、HTTPリクエストに含まれる情報へのアクセスを可能にします。
サーブレットコンテナやJSPコンテナが自動的に HttpServletRequest の「インスタンス」を生成し、それを request という変数に自動的にバインドします。

開発者は、この request 変数を利用して、HTTPリクエストからクエリパラメータやセッション情報、ヘッダなどの情報に簡単にアクセスでき、request.getParameter() などのメソッドを用いてクエリパラメータを取得することができます。


String parameter = request.getParameter("paramName");

このように、request オブジェクトは、HTTPリクエストを処理する際に必要な情報に簡単にアクセスできます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?