Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: moved examples/samples topic to a subpage

Excerpt
hiddentrue

Getting Started with OpenJPA

Getting Started Quickly with OpenJPA

This page provides samples for OpenJPA. For further information, the documentation provides comprehensive documentation on all aspects of configuring and using OpenJPA.

For more information on using OpenJPA within a Java EE application server, please see the Integration page for more details.

OpenJPA ANT Examples

These are some short (5 minutes) quick start guides for OpenJPA using the example provided with the distribution. Most OpenJPA releases require Java SE 5, but see Build and Runtime Dependencies for more details.

Getting Started with Eclipse

  1. Download the OpenJPA binary release from the downloads page and unpack it by double-clicking it.
  2. Launch Eclipse (this sample was tested with Eclipse 3.2.1, but any recent version should work).
  3. Select the File menu, traverse to the New sub-menu, and select Project.
  4. On the Select a wizard page, select Java Project from Existing Ant Buildfile, then click the Next button.
  5. Hit the Browse button next to the Ant Buildfile field, and navigate to the unpacked OpenJPA zip file on the desktop, then traverse through examples, then hellojpa, and select the build.xml file and hit the Open button.
  6. Hit the Finish button on the wizard.
  7. A new project will open, containing the OpenJPA jar and all its dependencies.
  8. On the Package Explorer, expand the top-level folder, then the examples folder, then hellojpa.
  9. Select the build.xml file in the hellojpa folder (note that there is also a build.xml file in the parent folder, which should not be selected). Right-click the build.xml file, and select the Run As sub-menu, then select Ant Build.
  10. The database will be initialized (using the stand-alone Derby database, which is included with the OpenJPA distribution) and the Main.java class will be run. In the Console, you should see the text Hello Persistence!.
  11. Congratulations! You have run your first sample program using OpenJPA. Examine the Main.java example program, as well as the Message.java entity class, play with them by adding fields and working on new persistence operations. Have fun!

Getting Started with the Console

  1. Ensure that you have Apache Ant installed (this sample was tested with ant 1.6.5, but any recent version should work).
  2. Download the OpenJPA binary release from the downloads page and unpack it by double-clicking it.
  3. Launch a console, such as cmd.exe on Windows, Terminal.app on Mac, or xterm on UNIX.
  4. Change directories to the Desktop, then cd to the unpacked OpenJPA folder.
  5. cd to the examples subdirectory, then to the hellojpa subdirectory.
  6. Run ant, which will compile the classes and run the sample application. At the end of the build, you should see the text Hello Persistence!.
  7. Congratulations! You have run your first sample program using OpenJPA. Examine the Main.java example program, as well as the Message.java entity class, play with them by adding fields and working on new persistence operations. Have fun!

Getting Started with Netbeans

  1. Download the OpenJPA binary release from the downloads page and unpack it by double-clicking it.
  2. Launch Netbeans (this sample was tested with Netbeans 5.5, but any recent version should work).
  3. Select the File menu and select New Project.
  4. On the New Project page, select Category:General Projects:Java Project with Existing Ant Script, then click the Next button.
  5. Press the Browse button next to the Location field, and navigate to the unpacked OpenJPA directory
  6. Press the Browse button next to the Build Script field, and navigate to the unpacked OpenJPA directory through examples, then hellojpa, and select the build.xml file and press the Open button.
  7. Type a name for the project, press Set as Main Project and press the Next button on the wizard.
  8. Press Next to accept the Build and Run Actions.
  9. On the Source Package Folders page, press Add Folder, select the examples folder, and press Next.
  10. On the Java Sources Classpath page, press Add JAR/Folder and select the openjpa-x.x.x/lib/geronimo-jpa_3.0_spec-1.0.jar which contains the JPA API classes which is used to compile against.
  11. Press Finish
  12. A new project will open, containing the OpenJPA jar and the examples source files.
  13. On the Package Explorer, expand the top-level folder, then the examples folder, then hellojpa.
  14. Navigate to the build.xml file in the hellojpa folder (note that there is also a build.xml file in the parent folder, which should not be used). Right-click the build.xml file, and select the Run Target sub-menu, then select run.
  15. The database will be initialized (using the stand-alone Derby database, which is included with the OpenJPA distribution) and the Main.java class will be run. In the Console, you should see the text Hello Persistence!.
  16. Congratulations! You have run your first sample program using OpenJPA. Examine the Main.java example program, as well as the Message.java entity class, play with them by adding fields and working on new persistence operations. Have fun!

Other Examples

Apache Geronimo v2.1 Samples

Quick Start Guide

Include Page
openjpa:Intro
openjpa:Intro

Runtime Dependencies

To use OpenJPA as a stand-alone Java component or with a lightweight non-Java EE framework, please refer to the following Build and Runtime Dependencies page for the supported levels of Java SE.

To use OpenJPA in a Java EE application server, please refer to the following Integration page for the known platforms that either include OpenJPA or have been tested with OpenJPA.

JPA Examples

OpenJPA provides some simple examples as part of the binary distribution on the Downloads page. The following Samples page provides quick start instructions on how to build and run these samples, along with pointers to other JPA samples from the Apache Geronimo project.

Enhancing Entities

The JPA spec requires some type of monitoring of Entity objects, but the spec does not define how to implement this monitoring. Some JPA providers auto-generate new subclasses or proxy objects that front the user's Entity objects at runtime, while others use byte-code weaving technologies to enhance the actual Entity class objects at build time. OpenJPA supports both enhancement methods, but strongly suggests only using the build time enhancement. The following OpenJPA Enhancement page includes more details on both enhancement types, along with examples on how to setup build time enhancement in ANT, Maven and Eclipse environments.

...