문제

As I read about 4+1 architectural view model from the following link http://en.wikipedia.org/wiki/4%2B1_architectural_view_model

What is the precise differences between Development view (implementation view) and Physical view??

PS:I do know that the first one is from programmer perspective and the second one from system engineer perespective

도움이 되었습니까?

해결책

Physical view is used for depicting how the software is deployed in data centers. For example: if you built a web application, then, say you will deploy it on Amazon AWS cloud. Then physical view will show how many servers are used, what is the role of their server, what software components are installed on it, etc. Hence, you can say that this view is of more importance for your operations team (System engineers as indicated in that Wiki page)

Development view is for communicating among developers as to what is the software design. This mostly deals with logical organization of your code - package, classes, etc.

Hope it clarifies.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top