I recently completed a college Java assignment. The assignment utilised various other jar files, e.g. mysql connector. When I created a jar file from the Java programs in the project the connections to these other jar files were lost.

I tried various different combinations when creating the jar file and once included the mysql connector, but to no avail. I didn't expect this to work as my research had shown that usually only sound effects and images are classed as acceptable additional files.

Everything is within the same directory and all the classpaths to the various jar files are relative. My IDE is jGrasp. The jar file when executed did everything that didn't require resources other than the Java classes I had created.

Is what I was trying to achieve possible? If so how can I retain the full functionality of the system when creating a jar file?

I would be very appreciative of any help you can provide.

link|improve this question
feedback

2 Answers

You can't include jar files in other jar files, i.e., nest jar files. Also, note that the -classpath option is ignored if you execute your application using the -jar option.

Solution 1: You can edit the Class-Path option in the manifest file of the jar if you want to add other jars to the class path.

Solution 2: If you want to distribute your application as a single jar, you'll have to merge the jar files using some tool such as FatJar or OneJar.

Related questions:

link|improve this answer
You can nest jar files if you use a classloader that supports it; one of the maven superjar modules does this for you, in fact. (I forget which one it is.) – Joseph Ottinger Apr 21 '11 at 11:09
So maven automatically includes a special class loader in the distribution? In this case it should be noted that some systems have security constraints on using a custom class loader. – aioobe Apr 21 '11 at 21:23
aioobe: no doubt. But in most of THOSE systems (Java EE, OSGi), an embedded classpath is already supported so you wouldn't bother with a custom classloader. – Joseph Ottinger Apr 22 '11 at 11:46
feedback

If you JAR has dependencies with other JARs you must provide those in your class path.

For instance, let's say you were accessing a database, and therefore, you were using a specific JDBC driver, for the sake of the example, let's say you were using MySQLConnector5.1.jar.

Then, you must provide your jar, plus the MySQLConnection5.1.jar or let your clients know that they must provide the corresponding jar in the class path.

Thus, to invoke your application you must do:

java -classpath MySQLConnector5.1.jar;MyApplication.jar com.myapp.Main

If you do not wish to create this dependency, then you can package the jar in question within your own jar. All you have to do is to jar the contents of MySQLConnector5.1.jar into your own jar.

Then, your own jar would satisfy all dependencies, and you could invoke your application as follows:

java -classpath MyApplication.jar com.myapp.Main
link|improve this answer
1  
No, java -classpath MySQLConnector5.1.jar -jar MyApplication.jar won't work. The -classpath is ignored if you use the -jar switch. – aioobe Apr 21 '11 at 9:57
@aioobe I have changed post to use just class path and avoid having to go into manifests. Thanks! – edalorzo Apr 21 '11 at 10:05
feedback

Your Answer

 
or
required, but never shown

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