I know this isn't "best practice", but can I include all of the dependencies in one big jar?

link|improve this question

feedback

11 Answers

up vote 3 down vote accepted

There's a utility called One-Jar which does what you want, although I'd advise against it. The performance is usually awful.

link|improve this answer
1  
Please elaborate on the awful performance. I use it, and would appreciate the feedback. – Thorbjørn Ravn Andersen Jun 29 '09 at 21:58
I haven't used it for a long time now, but I recall that the classloading performance was very poor, due to the way that the JARs were unpacked. But like I say, it's been a while. – skaffman Jun 29 '09 at 22:16
feedback

I used maven assembly plugin with jar-with-dependencies descriptor

link|improve this answer
2  
+1. Maven is pretty awesome for taking care of this type of stuff. However I recommend creating a custom assembly rather than using the default jar-with-dependencies since you can get much better results that way. Also, it is worth noting that the latest assembly plugin is somewhat buggy & add multiple copies of your dependencies, so until that is fixed I recommend using the previous version. – dborba Jun 29 '09 at 19:01
feedback

Using the good old Ant: just use zipgroupfileset with the Ant Zip task

<zip destfile="out.jar">
    <zipgroupfileset dir="lib" includes="*.jar"/>
</zip>

This will flatten all included jar libraries' content.

link|improve this answer
2  
How should we handle multiple Manifest files in the jar files? – Anthony Kong Dec 4 '09 at 3:06
feedback

My feeling is that calling One-Jar's performance awful and poor is unjust. For moderately sized application one can expect startup will take a couple of seconds longer (which does not affect JVM splash screen though). Memory overhead of tens of megabytes is negligible for most environments, except perhaps embedded systems. Also, One-Jar is capable of automatically extracting some files to the file system, which saves the need to develop an installer in my case.

Below is an attempt to quantify the performance impact introduced by One-Jar to my application. It is Swing-based GUI application, consists of 352 classes obfuscated with ProGuard 4.5b2. One-Jar 0.96 is used to bundle resulting classes with 12MB worth of libraries (ODFDOM, Saxon HE, Xerces, Jaxen, VLDocking, Apache Commons, etc). I have compared performance of the obfuscated jar with the same jar processed by One-Jar.

  • From JVM start to the start of of main() method: 0.5s without One-Jar and 1.7s with One-Jar. From JVM start to the appearance of application window on the screen: 2.3s without One-Jar and 3.4s with One-Jar. So One-Jar adds 1.1s to startup time.
  • One-Jar will not increase the delay between JVM start and splash image appearing on the screen (if implemented via jar manifest), so the startup time increase is not too annoying for interactive applications.
  • We are talking about a class loader, so there should be no impact on code execution speed, unless you are extensively using dynamic class loading.
  • Looking at JVM statistics (via jconsole) shows that One-Jar'red version takes more heap memory. For my application the overhead is in the order of tens of MBs. I saw figures like 16MB vs 40MB, 306MB vs 346MB, 131MB vs 138MB, depending on now much user data the application is handling and now long time ago garbage collector has been executed.

The above timing was obtained by taking a timestamp just before starting JVM from Linux shell, in beginning of main() method, and in windowOpened() event handler of my application window. The measurements were taken on a not particularly fast D820 laptop, with dual core 1GHz CPU and 2G or RAM running Ubuntu 8.04.

Hope it helps.

link|improve this answer
feedback

If you want to do this there is a tool called Jar Jar Links which will do this for you. Never used it but it is hard to forget the name.

link|improve this answer
3  
minus one million for the pun – skaffman Jun 29 '09 at 19:00
feedback

One-JAR loads all the dependency jars into memory on startup. This may sound horribly inefficient, but nobody has complained to me about it since it was released in 2004. The likely effect of pre-loading is an overall speed up of classloading for the application, since the classloader does not have to repeatedly scan the classpath for resources and classes as the application runs: everything is hashmapped.

It's pretty simple to build a lazy loader which would load on-demand: but I'm of the school that says "build-it, measure-it, improve-it if necessary" and so far there has been no need to improve it.

I will keep this in mind for future releases (or if someone else wants to tackle it, that would be great too, since without a very large application to measure against, it's hard to know if changes are improvements).

link|improve this answer
feedback
  • You can unjar files and repack them using the command line

  • You can use [uberjar]

  • You can use fatjar

link|improve this answer
fatjar uses one-jar mentioned elsewhere – Thorbjørn Ravn Andersen Jun 29 '09 at 21:59
feedback

Often you can, but sometimes there are unusual legal or technical reasons not to.

  • Legal: For example, we discovered that at the time we wanted to, we could not bundle the JavaMail jar files together into one big package with the rest of our app, but the license agreement said we had to keep them separate.

  • Technical: Another problem might be custom class loaders look for specific resources or classes inside of specific jar files. This often happens in the context of containers for application servers or ESBs.

How: To do it, just unjar everything into one directory, and then rebuild a jar from there. You might have to tweak some settings in the META-INF folder to remove the requests to load the additional jars, and to handle the case where different jars each have a default class to run. There are some third-party utilities which might help, but unless you know what they are doing, you'd want to be careful.

link|improve this answer
1  
lets assume its legal, how do you do it? – Eric Jun 29 '09 at 18:55
feedback

Eclipse 3.4 and up allows you to do this. Right click your project, select Extract, and navigate to the Runnable Jar option. Select Next. Choose the appropriate settings and your off and running. Also I seem to recall that this functionality is achieved using the same or similar libraries that FatJar (mentioned above) uses.

link|improve this answer
This is basically equivalent to Vladimir's answer, because Eclipse creates an Ant zip task to implement this. – finnw Jul 18 '10 at 10:11
feedback

Just for completeness, ProGuard will do this for you, as well as optionally obfuscating and shrinking JARs. The latter function is especially useful for creating final deployment JARs.

link|improve this answer
feedback

Also remember that .jar files are .zip files under the covers. You can use your favorite zip tools to (re)package them. In this case, you would have to deal with the manifest file yourself.

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.