Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

EclipseLink/Examples/JPA/Where

< EclipseLink‎ | Examples‎ | JPA
Revision as of 08:06, 29 March 2009 by Unnamed Poltroon (Talk) (EclipseLink JPA GeoNames Example)

Catnicon.gifThis example is currently under development see Bug 227113

EclipseLink JPA Where Example

This example illustrates the use of EclipseLink JPA against a public domain data-set made available through www.geonames.org which makes its data available under the Creative Commons Attribution 3.0 License. This example is intended to illustrate the use of EclipseLink with a non-trivial amount of data.

Download Example

During development this example is available as a work-in-progress from the EclipseLink SVN. When version 1.0 ships this example will be made available in zip format download.

SVN location for work-in-progress: /svnroot/rt/org.eclipse.persistence/trunk/examples/org.eclipse.persistence.example.jpa.geonames/

Domain Model

The domain model for this example is based on the GeoNames data set.

  • Country
    • AdminDivision
  • TimeZone
  • Language
  • Feature
  • Point

Back to the top