Reasons not to use MVC architecture for web application

后端 未结 12 1992
野的像风
野的像风 2021-02-07 12:01

In the past I have primarily built all my web applications using an N-tier architecture, implementing the BLL and DAL layers. Recently, I have started doing some RoR development

12条回答
  •  忘掉有多难
    2021-02-07 12:19

    Personally, I would rate it based on the complexity of the target application. MVC (or more structured approaches in general) lend themselves very well to large scale applications where design consistency and segregation of code is a benefit outweighing the cost of supporting the design.

    If its a small site, or very few pages/controls, I would avoid sticking to strict design patterns. But that is just my preference.

    As one poster said, you also have to consider the state of any existing applications, and your development team skills / experience.

提交回复
热议问题