- 浏览: 165901 次
- 性别:
- 来自: 天堂
最新评论
-
woodpeckerboy:
您好 。我这边也遇到了这种怪问题 。也是按照你说的那样导入ja ...
JSTL http://java.sun.com/jsp/jstl/core -
henuhaigang:
[color=darkred]jk[size=x-small] ...
AJAX学习之序列二:struts2 jquery json 实现AJAX 注册ID验证 -
king_jw:
不错,学习了
Web Service学习,用于web service实现的两个主要的框架axis和xfire. -
Mr0o0rM:
顶顶顶顶顶顶
SOAP -
tengfeineu:
...
AJAX学习之序列二:struts2 jquery json 实现AJAX 注册ID验证
http://blog.slickedit.com/2007/05/how-to-write-an-effective-design-document/
Day by day, programmers are able to get more done in less time. With today’s high level languages, development environments, tools and the “rapid application development” mindset, both programmers and managers have become accustomed to extremely fast development cycles. Programmers are now more inclined to jump directly into development, fearing that every hour they are not writing code will result in an hour of overtime the weekend before the deadline.
The process of designing before coding is becoming outdated. Documenting designs is becoming even rarer. Many developers have never written a design document and cringe at the idea of doing so. Many who are required to, typically generate a lot of interaction diagrams and class diagrams, which don’t often express the developer’s thought process during the design phase. This article will discuss how to do write an effective design document concisely with no special tools, and without needing to know UML. It will also discuss why a well written design document is one of the most valuable tools a developer can have when entering a new project.
Why write a design document?
A design document is a way for you to communicate to others what your design decisions are and why your decisions are good decisions. Don’t worry if your design is not UML compliant and don’t worry if you didn’t use a special modeling tool to create it. The biggest factor that determines if your design document is good is whether or not it clearly explains your intentions.
This presents a problem, however. In order to convey design decisions, you have to consider the audience that you are writing for. A peer developer will understand why a well-crafted class abstraction is a good design, however your manager will probably not. Because your peer developers and your manager have different concepts of what makes a design good, there is a need for two design documents; one for peer developers and one for managers. Each document serves a different and equally valuable purpose as you begin your project development.
If this seems like too much work, it’s not. This article will show you how to do this through documentation reuse.
What makes a good design?
A design will typically be considered good if it fulfills the requirements in a meaningful way. If any aspect of the design cannot be justified, then it is probably worth reevaluating. Many programmers try to incorporate design patterns into their work, and they often add unnecessary complexity. You should be able to list at least one compelling reason, related to the requirements, for why a design decision was made. That reason must then be documented. If you can’t come up with a clear reason for a design decision, then it is probably not adding value.
Diagrams are a great tool for visualizing your design, but they cannot convey the motivation behind your design decisions. That is why it is so important to let diagrams supplement your design document, not be your design document.
In addition, it is also extremely important to document any benefits that result from a design decision. By doing so, others who read your document will understand what value they can gain. Likewise, any associated risks must also be documented. More often than not, other programmers have faced the same risks and may have helpful pointers or solutions that you may not have thought about. By listing these items, you also get others to think about what the potential risks could be as well. Teammates will often be able to see potential pitfalls that you didn’t see when you created your design. It is much easier to rearrange some boxes in a diagram than it is to rewrite hundreds of lines of code when an assumption fails or when you hit an unforeseen snare during coding. A good design document minimizes unexpected complications by addressing them before the code is written.
Finally, a document will provide you, your manager and your team with a common vocabulary for talking about the project. A design document can be a powerful tool for a manager because it gives them a view into the project that they don’t normally have the technical expertise to see. By listing the benefits you give your manager tangible items that describe why your design is sound. By documenting the risks of your design before development, you pass the responsibility of that risk to your manager, which is where it belongs.
Lastly, the design document is a written contract between you, your manager and your team. When you document your assumptions, decisions, risks, etc, you give others a chance to say, “Yes, this is exactly what I expect.” Once your document passes that stage, it becomes a baseline for limiting changes in project scope. Obviously, requirements are going to change sometimes, but with a baseline document you have the power to say that no change in scope is due to a misunderstanding of the requirements.
Writing for a Peer Developer
The goal of a peer developer design document is to make sure that your ideas are valid and that your approach works with what others are doing. When developers don’t communicate their plans, disaster is sure to strike when modules or classes begin to interact. The following items describe a general guideline for writing this type of document:
Section 1 – State the purpose of your project/sub-system: In this section, write a few paragraphs that describe what the project or sub-system does. What is the problem it is trying to solve? Why does it need to exist? Who will use it? By answering these questions, you establish the scope of your design. If you find it hard to write a few paragraphs in this section, then you probably don’t understand the domain as much as you should. If you can’t fit your description within a few paragraphs, then perhaps the scope is too large. Use this section as a tool to verify that the scope of your design is reasonable.
Section 2 – Define the high level entities in your design: High level entities are objects, or groups of objects, that constitute major constructs of your design. Good examples of entities are a data access layer, a controller object, a set of business objects, etc… Figure 1 shows an example of a .
Figure 1 (click to see full size)
In this section, explain in a few sentences what each entity does. The descriptions don’t have to be verbose, just enough to explain what each block’s purpose is. Be sure to describe your reasoning for defining the entities in your diagram and what their roles are.
Section 3 – For each entity, define the low level design: This section is where your objects and object relationships are defined. For each object (or set of objects) define the following:
Usage
Describe in a paragraph how the object is used and what function it serves. If an object will interface with an external object or system, it is a good idea to show the interface for the object. Most importantly, you must again describe your thought process for defining the object as you did. List the benefits and risks. If an object provides an encapsulation, describe in a sentence why the encapsulation adds value. Use your descriptions to give meaning to the diagrams. They don’t have to be verbose, just enough to get the point across.
Configuration
If your object needs any special configuration or initialization, this is a good place to describe it. If not, this section can be left out.
Model
Figure 2 shows an example of a to supplement the System Security entity from figure 1. It is not perfect UML, but has some aspects of UML. Most importantly, it describes the design.
Figure 2 (click to see full size)
Don’t worry about perfection in your models, but be sure to describe exactly what is going on in the diagram. Here, two concrete security objects derive from a base security object, and a security factory will create one or the other for a client depending on the security model of the system.
Interaction
This is also a good section for interaction diagrams. An interaction diagram shows how a set of objects or entities communicate with each other to perform a complex task. Figure 3 shows an example of an to show how a user might log in. It uses objects from the various entities shown in figure 1.
Figure 3 (click to see full size)
Again, this diagram is not perfect UML, but it explains the communication sequence to accomplish a complex task. Interaction diagrams are most useful when you want to diagram how an object in your system will communicate with an object in another subsystem. This type of diagram will let the other developer verify that the interaction is correct.
Section 4 – Benefits, assumptions, risks/issues: In this section, make a list of 5-6 top benefits of the design, a list of ALL known risks/issues and a list of ALL assumptions. Some of this may simply be rehashing what you wrote in a previous section of the document. What’s important is getting all of these items into one section so that the reader doesn’t have to read the whole document to understand what the benefits, risks and assumptions are.
Never remove anything from this section! As risks become non-risks, document that they are now non-risks and why they became non-risks. Never erase them from the document. The same holds true for assumptions. You should be able to look at this section and know instantly what the current risks are to your design.
Writing for a Manager
The goal of a design document for your manager is to make sure that your manager understands what the main entities of the system are, what the benefits are and, most importantly, what the risks are. The document is your chance to show that you understand the requirements and that you have come up with a plan to meet those requirements.
If you have written the peer developer document well, then writing the manager’s document is simple, because it is just made up of sections 1, 2 and 4. By dividing the peer developer document up as described previously, the parts which are typically not meaningful to a manager have been contained in a single section of the document which may be removed.
Conclusion
The hardest part of writing a design document has nothing to do with the writing. The difficult part is working through a logical design before you get to coding. Once you have a vision of how the objects and entities are arranged, writing the details is easy. In addition, it should not require anything more than a word processor and a simple shape painting program. The positive difference that spending a week on this task can make is unbelievably rewarding in the end. As the adage goes, “If you fail to plan, then you plan to fail.”
<script type="text/javascript"></script><script src="http://s7.addthis.com/js/addthis_widget.php?v=12" type="text/javascript"></script>
发表评论
-
struts2 使用之我见
2010-01-12 11:52 70struts2 使用之我见 Struts2 是一个相当强 ... -
MySQL查询优化系列讲座之查询优化器
2010-01-07 00:33 310MySQL查询优化系列讲座之查询优化器 当你提交一个查询的时 ... -
MySQL 命令行
2010-01-07 00:26 84MySQL 命令行 第一招、mysql服务的启动和停止 ... -
MySQL中SQL优化和架构设计的一些简单想法
2010-01-06 17:34 395MySQL中SQL优化和架构设计的一些简单想法普通MySQL运 ... -
我的mysql 优化日记
2010-01-06 17:24 1053同时在线访问量继续 ... -
mysql优化
2010-01-06 17:00 980在整体的系统运行过程 ... -
我也谈谈JAVA并发程序设计的现状和前景
2010-01-06 12:07 1299最近我也是在涉及并发J ... -
SVN配置
2010-01-05 23:12 1031在大学期间为了配这个S ... -
Easy Ajax with jQuery
2009-12-25 01:00 1093Ajax is changing web applicatio ... -
Use jquery remote validation with struts2
2009-12-25 00:00 164I feel that jquery’s vali ... -
实战DDD(Domain-Driven Design领域驱动设计:Evans DDD)
2009-12-24 17:53 1224http://www.jdon.com//mda/ddd.ht ... -
面向对象与领域建模
2009-12-24 17:36 835多变且复杂的需求 ... -
已经会struts1.x了为何还要学习struts2呢
2009-12-24 15:44 956一、首先,一个新版本的程序是为了解决老版本的一些bug而出世. ... -
AJAX学习之序列二:struts2 jquery json 实现AJAX 注册ID验证
2009-12-24 14:09 2624http://blog.csdn.net/abing37/ar ... -
如何写一个好的需求文档
2009-12-24 11:01 10031、从用户角度的编写 ... -
MRD
2009-12-24 10:59 845MRD ... -
软件开发从文档做起
2009-12-24 10:52 749说起文档,首先我从即 ... -
设计与开发的五条原则–六年真谛
2009-12-24 10:47 732这篇文章发表于我的博 ... -
接口开发及技术负责人的职责随笔
2009-12-24 10:35 2094对于网站或者平台,大 ... -
struts2.1两天快速入门
2009-12-24 10:26 1237第一天上午学习目录列表: 一、第一个 ...
相关推荐
How to write an essay.pages
根据提供的文件信息,以下是对《How to Write and Publish a Scientific Paper》一书内容的知识点的详细阐述: 标题:《How to Write and Publish a Scientific Paper》(如何撰写和发表科学论文) 1. 科学写作的...
How to write and publish a scientific paper ContentsChapter 1 What Is Scientific Writing? Chapter 2 Origins of Scientific Writing Chapter 3 What Is a Scientific Paper? Chapter 4 How to Prepare the ...
VTK 12 How to Write a Process__ Object.pdf VTK 12 How to Write a Process__ Object.pdf VTK 12 How to Write a Process__ Object.pdf
MTK10A开发指南-how to write an application.pdf 也许他还有其他的名字,不过都是教人写mtk上的一个mmi页面的
How To Write A Dissertation
(How to Write a (Lisp) Interpreter (in Python))和(An ((Even Better) Lisp) Interpreter (in Python))的翻译,对解释器实现原理和函数式编程敢兴趣的可以下载看看!
本书《How to Write & Publish a Scientific Paper 6th Edition(nc)》是一本专为理工科学生和科研人员撰写的指南,目的是提高他们科技论文写作能力,并且帮助他们更容易地将论文发表在国际期刊上。这本书自1979年...
MIT计算机大牛Bill Freeman教授于2014年写的报告,虽然比较久远,但非常有参考意义。How to write a good CVPR submission
How to Write & Publish a Scientific Paper 6th Edition
标题 "How to write business Email.zip" 提供了一个关键的话题,即如何撰写商务电子邮件。这个压缩包文件可能包含一系列资源,如图像、PDF文档、PPT演示文稿等,旨在教授和指导用户掌握商务邮件的撰写技巧。从描述...
教你如何书写与发表科技论文 很实用哦 How to Write & Publish a Scientific Paper 英文版
A special feature of this edition is a new appendix on NoSQL and relational theory.Could you write an SQL query to find employees who have worked at least once in every programming department in the ...
国外2B市场很早就成熟了,有一批专业人士一辈子都在研究数据管理及治理,有很多专业...John Ladley-Data Governance_ How to Design, Deploy and Sustain an Effective Data Governance Program-Morgan Kaufmann (2012)
文章系统描述如何撰写论文,如何成功的进行发表
国外教授教你怎样写论文,文章题目为:how to write a paper, 特别好的一个资料,适用需要写毕业论文或者其它论文的人,尤其是英文论文。
How to read an AWR report