码迷,mamicode.com
首页 > 其他好文 > 详细

Choose Your Tools with Care

时间:2015-04-18 17:51:38      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

Choose Your Tools with Care

Giovanni Asproni

MODERN APPLiCATiONS ARE VERY RARELY BUiLT FROM SCRATCH. They are assembled using existing tools—components, libraries, and frameworks— for a number of good reasons:
? Applications grow in size, complexity, and sophistication, while the time available to develop them grows shorter. It makes better use of devel- opers’ time and intelligence if they can concentrate on writing more business-domain code and less infrastructure code.
? Widely used components and frameworks are likely to have fewer bugs than the ones developed in-house.
? There is a lot of high-quality software available on the Web for free, which means lower development costs and greater likelihood of finding developers with the necessary interest and expertise.
? Software production and maintenance is human-intensive work, so buying may be cheaper than building.
However, choosing the right mix of tools for your application can be a tricky business requiring some thought. In fact, when making a choice, you should keep in mind a few things:
??20
97 Things Every Programmer Should Know
?
?
Different tools may rely on different assumptions about their context—e.g., surrounding infrastructure, control model, data model, communication protocols, etc.—which can lead to an architectural mismatch between the application and the tools. Such a mismatch leads to hacks and workarounds that will make the code more complex than necessary.
Different tools have different lifecycles, and upgrading one of them may become an extremely difficult and time-consuming task since the new func- tionality, design changes, or even bug fixes may cause incompatibilities with
?
???????????????the other tools. The greater the number of tools, the worse the problem can become.
? Some tools require quite a bit of configuration, often by means of one or more XML files, which can grow out of control very quickly. The applica- tion may end up looking as if it was all written in XML plus a few odd lines of code in some programming language. The configurational complexity will make the application difficult to maintain and to extend.
? Vendor lock-in occurs when code that depends heavily on specific ven- dor products ends up being constrained by them on several counts: maintainability, performances, ability to evolve, price, etc.
? If you plan to use free software, you may discover that it’s not so free after all. You may need to buy commercial support, which is not necessarily going to be cheap.
? Licensing terms matter, even for free software. For example, in some companies, it is not acceptable to use software licensed under the GNU license terms because of its viral nature—i.e., software developed with it must be distributed along with its source code.
My personal strategy to mitigate these problems is to start small by using only the tools that are absolutely necessary. Usually the initial focus is on removing the need to engage in low-level infrastructure programming (and problems), e.g., by using some middleware instead of using raw sockets for distributed applications. And then add more if needed. I also tend to isolate the external tools from my business domain objects by means of interfaces and layering, so that I can change the tool if I have to with a minimal amount of pain. A positive side effect of this approach is that I generally end up with a smaller application that uses fewer external tools than originally forecast.

Choose Your Tools with Care

标签:

原文地址:http://blog.csdn.net/wangzi11322/article/details/45114161

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!