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

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

(EclipseLink Annotations)
Line 1: Line 1:
 
== EclipseLink Annotations ==
 
== EclipseLink Annotations ==
EclipseLink provides advanced annotations that may be used to configure your persistence unit classes. See the org.eclipse.persistence.jpa.annotations package for more information.
+
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.
 +
 
 +
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.
  
 
== Properties ==
 
== Properties ==

Revision as of 14:56, 15 October 2007

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.

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.

Properties

Native ORM may be configured with the many EclipseLink properties.

  • eclipselink.jdbc.driver
  • eclipselink.jdbc.url
  • eclipselink.jdbc.user
  • eclipselink.jdbc.password

To name a few, see the org.eclipse.persistence.jpa.config.PersistenceUnitProperties class for a full list of properties.

Back to the top