what is the difference between 3 tier architecture and a mvc?

后端 未结 5 1459
不思量自难忘°
不思量自难忘° 2020-12-23 06:47

what is the difference between 3 tier architecture and a mvc ?

Are they same?

Both have 3 layers i.e model, views and controller

5条回答
  •  臣服心动
    2020-12-23 07:35

    In MVC : MVC architecture is triangular: the view sends updates to the controller, the controller updates the model, and the view gets updated directly from the model

    In Three Tier : A three tier architecture is the client tier never communicates directly with the data tier In a Three-tier model all communication must pass through the middle tier

提交回复
热议问题