Pages

Monday, November 18, 2013

Considerations on using thirty party libraries to build your application.

Have you ever thought twice when you use a third party java library to implement your system? Well you should. Some of the reasons are
  1. Is the community active.(fix bugs pitfalls, and other aspects)
  2. Licensing
  3. Using many number of libraries many cause increase in dependencies on third parties.
  4. Some bugs in your system may be because of a third party library.
  5. Updating resources in the system(OS, jre, etc...) may cause the system to break and then we will have to replace the library with the updated one if exists, replace the library with another third-party software, folk the software and fix it, or re-implement the functionality by our own.
Having said that we still do need third party libraries in almost all implementations. But keeping these dependencies to a minimum is very important because of the above said reasons.

No comments:

Post a Comment