Why should a web architecture be loosely coupled?

后端 未结 13 1933
盖世英雄少女心
盖世英雄少女心 2020-12-23 14:19

When I look at ASP.NET MVC projects I everytime see loose coupled architecture.

For what do I need a loose coupling in a web architecture (if I do not make unit test

13条回答
  •  旧时难觅i
    2020-12-23 15:10

    It will give you scalability. For example if you have service layer behind you can separate it in several servers. Also you will have less dependencies and modifications will be easier. Also code support will be easier.

    Here you can see interesting small article : SOA - Loosely Coupled...What?

    Shortly it says :

    Loosely coupled systems provide many advantages including support for late or dynamically binding to other components while running, and can mediate the difference in the component's structure, security model, protocols, and semantics, thus abstracting volatility...

提交回复
热议问题