What are the factors that I need to consider when I include a third party jar in my application? I have listed a few below. Is there anything else that I am missing? And how does the Memory footprint work? What is the jar size has got to do with the Memory footprint?

  1. Memory Footprint
  2. Stability
  3. API usage
  4. Community Support
  5. Cost
link|improve this question
Whatever is "API usage"? Aren't all APIs used by someone somewhere? – meriton Jun 29 '10 at 20:36
by API usage, I really meant how easy it is to use their API. It shouldn't make my code complex and cluttered. – santhakr Jun 30 '10 at 3:51
feedback

4 Answers

Licensing issue, whether you are using it in 1) your open source project, 2) internal usage (ex: within your company, etc), or a product that you will commercialize later.

link|improve this answer
feedback

A single class can take up a lot of memory. A large jar can take up almost none. There might not be a correlation. All the code from a jar might not be loaded.
I would only use foreign jars if they provide a service that I do not want to implement myself. Also foreign jars might be tried in production.

It really depends on what you are trying to do and which jars you want to use. There is no cut and dry answer.

Current development is so complex that you cannot implement everything yourself within a reasonable time period. Find best of breed jars and glue them together within your app if it is a large app. If what you want to is simple then do it yourself.

link|improve this answer
feedback

What about ...

  • documentation (tutorial, manual, java doc, source code)?
  • bug-free (or at least tested)?
link|improve this answer
feedback
  • Does it really provide the features you want? How easy is it to customize it to the way you want?
  • How mature is the third-party code
  • How easy is it to get the updates/patches
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.