I know this isn't "best practice", but can I include all of the dependencies in one big jar?
|
feedback
|
|
There's a utility called One-Jar which does what you want, although I'd advise against it. The performance is usually awful. | |||||||
feedback
|
|
I used maven assembly plugin with jar-with-dependencies descriptor | |||||
feedback
|
|
Using the good old Ant: just use
This will flatten all included jar libraries' content. | |||||
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.
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. | ||||
|
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. | |||||
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). | |||
|
feedback
|
| |||
|
feedback
|
|
Often you can, but sometimes there are unusual legal or technical reasons not to.
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. | |||||
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. | |||
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. | |||
|
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. | |||
|
feedback
|