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

m (linked to full eclipselink extensions in elug)
Line 1: Line 1:
 
== EclipseLink Annotations ==
 
== 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 seperate ORM functionality available from EclipseLink that goes beyond those features made available through JPA.  
+
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.  
  
Features like basic collections and maps, caching features, change tracking, converters and named stored procedure queries to name a few. See the org.eclipse.persistence.jpa.annotations package for the complete list of supported EclipseLink annotations.
+
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 <tt>org.eclipse.persistence.jpa.annotations</tt> package for the complete list of supported EclipseLink annotations.
  
 
== Properties ==
 
== 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.
 
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.

Revision as of 08:15, 30 January 2008

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