3 Tier Architecture - In need of an example

前端 未结 9 1497
孤城傲影
孤城傲影 2020-12-12 13:53

Presently I am working using single tier architecture. Now I am wanting to learn how to write code using 3 tier architecture. Please can you provide me with a simple example

9条回答
  •  一个人的身影
    2020-12-12 14:54

    A good tutorial, with complete source control download of a well written tiered application would be here:

    http://nerddinnerbook.s3.amazonaws.com/Intro.htm

    This isn't a tutorial about tiered architecture, but it's a well written app and gives some insight into why you might consider this architecture.

    Additionally, as has only been briefly touched on above, this is about keeping your logic/storage/presentation code separate, so if you have to change one of them (e.g change from asp.net front end to a desktop application), it's not so hard to do.

提交回复
热议问题