apache > db
Apache DB Project
 
Font size:      

Create Jar Files for Your Application

Create Jar Files for Your Application

Include any Java classes in a jar file intended for Derby class loading except:

  • the standard Java packages (java.*, javax.*)

    Derby does not prevent you from storing such a jar file in the database, but these classes are never loaded from the jar file.

  • those supplied with your Java environment (for example, sun.*)

A running Derby system can load classes from any number of jar files from any number of schemas and databases.

Create jar files intended for Derby database class loading the same way you create a jar file for inclusion in a user's class path. For example, consider an application targeted at travel agencies:

jar cf travelagent.jar travelagent/*.class.

Various IDEs have tools to generate a list of contents for a jar file based on your application. If your application requires classes from other jar files, you have a choice:

  • Extract the required third-party classes from their jar file and include only those in your jar file.

    Best if you need only a small subset of the classes in the third-party jar file.

  • Store the third-party jar file in the database.

    Best if you need most or all of the classes in the third-party jar file, since your application and third-party logic can be upgraded separately.

  • Deploy the third-party jar file in the user's class path.

    Best if the classes are often already installed on a user's machine (for example, Objectspace's JGL classes).

Include the class files and resources needed for your application.


Previous Page
Next Page
Table of Contents
Index