2
4

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 3 years have passed since last update.

【JSP/サーブレット】 インクルード(include)の実装 動的&静的インクルード

Last updated at Posted at 2021-02-14

#インクルードとは:mag:
JSPファイルが他のJSPファイルを取り込み表示させる仕組みです。
動的インクルード静的インクルードの2種類の方法があります。

#1,ソースコード

#2,ブラウザ表示

#3,振り返り:beer:
動的インクルードは、「実行中」に他のJSPファイルの「内容」を取り込む
動的インクルードは、実行後にインクルード元に処理が戻ってくる

静的インクルードは、「実行前」に他のJSPファイルの「内容」を取り込む
静的インクルードは、変数やインスタンス、クラスをインクルード元で利用することができる

#4,次のステップ:airplane:
次回は、リクエストメソッド(”GET”、”POST")を扱います。
JSPファイルからサーブレットクラスへのページ遷移になります。

キーワード : doGet doPost :mag:

2
4
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
2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?