SMVC1: introduction, case and principle of spring MVC
1. Introduction
1.1 MVC
MVC: model (dao, service), view (jsp) and controller (servlet). MVC is not a design pattern, but an architecture pattern. Of course, in the early web development, Model1 is used. In Model1, it is mainly divided into two layers: view layer and model layer.
1.2 SpringMVC
Definition: Spring MVC is a lightweight Web fram ...
Added by peri on Fri, 24 Sep 2021 12:31:55 +0300
[Spring MVC learning notes 3] deeply practice Spring MVC controller
In the previous Blog, we implemented the first framework program of Spring MVC based on configuration and annotation respectively. Next, this Blog makes an in-depth study and Discussion on our Controller. Since it is a Controller, it must contain two topics: receiving requests and returning responses. We will make an in-depth study on these two ...
Added by HaLo2FrEeEk on Wed, 01 Sep 2021 21:45:32 +0300