2
1

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.

JSP MVC

Last updated at Posted at 2016-02-19

Model → JAVAのクラス
View → JSPファイル
Controller → Servletクラス

モデルは、中心となるデータやメソッドの一般クラスが担う。
リクエストスコープやフォワードはサーブレットファイルである。
これがControl(コントロール)になり要求や応答の窓口になる。

M=モデル(主な処理を行う一般クラス)
C=コントローラ(ブラウザからの応答・要求を受け付けるサーブレット)
V=ビュー(表示を受け持つJSPファイル)

M→一般的なJAVAクラス
V→表示を受け持つJSPファイル。データの取得・更新を行う
C→ブラウザからの応答・要求を受け付けるサーブレット

2
1
1

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?