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/ORMJPAConfigure

< EclipseLink‎ | Examples‎ | JPA
Revision as of 08:15, 30 January 2008 by Unnamed Poltroon (Talk) (linked to full eclipselink extensions in elug)

EclipseLink Annotations

EclipseLink provides advanced annotations that may be used to configure your persistence unit classes. In some cases, these annotations are to work in concert with existing JPA annotations where as other provide access to separate ORM functionality available from EclipseLink that goes beyond those features made available through JPA.

Some of these features include basic collections and maps, additional caching features, change tracking, converters, and named stored procedure queries.

See Using EclipseLink JPA Extensions (ELUG) and the org.eclipse.persistence.jpa.annotations package for the complete list of supported EclipseLink annotations.

Properties

EclipseLink also provides a set of extended properties that allow users to customize their persistence units. Options from database connection details to cahing and descriptor customizers. See the org.eclipse.persistence.jpa.config.PersistenceUnitProperties class for a full list of properties available for configuration.

Back to the top