/datanucleus-samples-jdo-tutorial-3.2

JDO DataNucleus tutorial

Primary LanguageJavaApache License 2.0Apache-2.0

jdo-tutorial

Simple demonstration of using JDO with DataNucleus. You can run this with any supported datastore by simply editing the following files :-

Maven Instructions

  1. Run the command mvn clean compile. This builds everything and enhances the classes.

  2. Run the command mvn datanucleus:schema-create. This creates the schema for the tutorial.

  3. Run the command mvn exec:java. This runs the tutorial.

  4. Run the command mvn datanucleus:schema-delete. This deletes the schema for the tutorial

Ant instructions

  1. Create a directory lib and add the following jars to it : jdo-api.jar, datanucleus-core.jar, datanucleus-api.jdo.jar, datanucleus-{store}.jar, log4j.jar, {your-database-driver}.jar

  2. Run the command ant clean compile enhance. This builds everything and enhances the classes

  3. Run the command ant createschema. This creates the schema for the tutorial.

  4. Run the command ant runtutorial. This runs the tutorial.

  5. Run the command ant deleteschema. This deletes the schema for the tutorial.