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

HTMLのimportでのリソースパスの指定の仕方

Last updated at Posted at 2018-11-02

<c:import> を使うことで、url 属性に指定したファイルの内容をその位置で読み込むことができます。
その上で、外側に枠を作り、中に別のページを表示させたい場合app.jsp(外側のjsp)を作り、
${param.content} とコード内に書き込む(画像の黄色い枠)。
イラスト.png
${param.content} と書いたところに、中に表示させたいページが入ることになる。
中に入れる方のページ(jsp)には
イラスト2.png
上の画像の黄色い枠で囲ってあるように <c:param name="content"> と記述する事で、黄色く囲ってある部分が中に入れたい部分に指定される。
今回は上の画像で ${param.content} と、下の画像で <c:param name="content"> というようにcontentで統一してページを指定している。

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?