Wrap Up - DocumentationJ8 Home « Wrap Up - Documentation

In our final lesson of the case study we wrap all our files up neatly in a JAR file so we can easily distribute them and to also show usage of the -jar command.

Bundling Our ApplicationsTop

We can bundle up applications we write for easy distribution and installation using WAR and JAR files. WAR is an acronym for Web Archive, is not part of the java certification and is beyond the scope of these tutorials. JAR is an acronym for Java Archive and is part of the java certification and will also be discussed here.

Creating A Manifest.mf FileTop

Before we create a JAR file we will need to create a manifest file. A manifest file is used by the JVM to load the correct class when we come to run our application from a JAR. Open your text editor and cut and paste the following lines into it. Name the file Manifest.mf and save it in the   D:\ManufacturerApplication directory.


Manifest-Version: 1.0
Main-Class: client.ManufacturerApplicationStartup


Warning:The text file must end with a new line or carriage return, as the last line which in our example is

  Main-Class: view.ManufacturerApplicationStartup

will not be parsed properly if it does not end with a new line or carriage return.


The following screenshot shows the contents of the Manifest.mf file saved into the   D:\ManufacturerApplication directory.

Create Manifest.mf file
Screenshot 1. Manifest.mf file creation.

If your saved manifest.mf file has been suffixed with a .txt extension just use the ren command (Windows) or the mv command (Linux) to rename it correctly.

Creating A JAR FileTop

The following screenshot shows the jar command which gives us quite a few options for archiving our applications and classes into a JAR file. The most commonly used options are c, v, f and m which can be specified in any order you like. The main thing to remember when using the jar command options is that the actual values you enter must correalate with the order in which the options are entered.

jar Options
Screenshot 2. jar options.

When we create our JAR file we will need to include the location and name of the manifest file we created. The following command typed from within the   c:\_Case_Study directory will create a JAR file called manufacturer.jar containing our packaged classes.   Make sure you include the period at the end.


jar -cvfm manufacturer.jar Manifest.mf -C out/production/ManufacturerApplication/ .

The screenshot below shows the JAR file named manufacturer.jar being created using the options specified.

jar Creation
Screenshot 3. jar options.

Running Our JAR FileTop

We can run our JAR file in the usual way using the java option and specifying the -jar command, the name of the JAR file, followed by any command line arguments.

Because the complete Manufacturer application is packaged within the JAR file we can run the JAR file from anywhere on our machine using an absolute path:

In my case   java -jar D:\ManufacturerApplication\manufacturer.jar client

Run jar 1
Screenshot 4. Run jar with absolute path.

Or by just using a relative path from the directory the JAR file resides in as shown by the following screenshot:

   java -jar manufacturer.jar client

Run jar 2
Screenshot 5. Run jar with relative path.

What's Next?

That's it for the Java case study. The next part of the site focusses on Java8 Certification.