Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Examples/JPA/Employee"

(GIT)
(GIT)
Line 12: Line 12:
 
=== GIT ===
 
=== GIT ===
  
You can check the latest versions of the example projects out of GIT from dev.eclipse.org:
+
You can check the latest versions of the example projects out of GIT from git.eclipse.org:
  
 
* "ssh://git.eclipse.org/gitroot/eclipselink/examples.git" to get all of the examples
 
* "ssh://git.eclipse.org/gitroot/eclipselink/examples.git" to get all of the examples

Revision as of 09:55, 8 April 2013

EclipseLink JPA Employee Examples

This set of examples uses a common employee domain model and relational schema with various configuration approaches.

  • Annotations: JPA using standard and extended annotations
  • XML: JPA using extended eclipselink-orm.xml mapping file
  • Dynamic: Dynamic persistence (no Java classes) mapped using API and eclipselink-orm.xml

Try them Out

To try out these examples you can download from the project's GIT repository or you can download the packaged projects.

GIT

You can check the latest versions of the example projects out of GIT from git.eclipse.org:

Download

Understanding the Examples

Employee Model

The employee model has existed in TopLink and EclipseLink since the mid 90's. The model has evolved a little over the years based on enhancements made available in the mappings.

EclipseLink Example Employee model.png

JPA 2.0 and Extended Features

When updated for EclipseLink 2.1 several JPA 2.0 features were introduced to the model and its mappings. These include:

  • PhoneNumber now mapped using derived identifiers so its primary key of EMP_ID and PTYPE are mapped with PhoneNumber.owner and PhoneNumber.type. The previous redundant mapping of PhoneNumber.id has been removed.

While the majority of the Employee examples use pure JPA mappings several extensions offered by EclipseLink are highlgted including:

  • Employee.gender mapped to the enum Gender using a converter to store a single char code in the database instead of the full enum's name or oridinal position.

Configuration Options

  • Annotations
  • ORM XML
    • EclipseLink ORM
    • JPA ORM + EclipseLink ORM

Back to the top