LoginSignup
1
1

More than 5 years have passed since last update.

Javaサーブレット/JSP MVCモデルとは

Last updated at Posted at 2018-04-24

MVCモデルにおける各要素の役割

それぞれの要素が役割を果たして、1つのアプリケーションが完成します。

要素 名称 役割
Javaクラス Model 処理やデータを格納する
JSP View 画面の表示を担う
サーブレットクラス Controller 処理を受け付けて割り振る

MVCモデルを作成しよう!

実際に、MVCモデルを作成していきます。
ControllerからModelやViewに指示を受け渡します。

Controllerの振る舞い

サーブレットクラスから、ModelであるJaveクラスやViewを担うJSPに様々な処理を依頼していきます。

1
1
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
1
1