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"

(EclipseLink Annotations)
(Properties)
Line 9: Line 9:
 
EclipseLink also provides a set of extended properties that allow users to customize their persistence units. Some of these options include customizing the database connection, caching, customizing descriptors, and more.  
 
EclipseLink also provides a set of extended properties that allow users to customize their persistence units. Some of these options include customizing the database connection, caching, customizing descriptors, and more.  
  
See [[Using_EclipseLink_JPA_Extensions_%28ELUG%29#How_to_Use_the_Persistence_Unit_Properties_for_Mappings|How to use the Persistence Unit Properties]] in the ''[[EclipseLink/UserGuide|EclipseLink User's Guide]]'' and the <tt>org.eclipse.persistence.jpa.config.PersistenceUnitProperties</tt> class for a full list of properties available for configuration.
+
See [[Using_EclipseLink_JPA_Extensions_%28ELUG%29#How_to_Use_the_Persistence_Unit_Properties_for_Mappings|How to use the Persistence Unit Properties]] in the ''[[EclipseLink/UserGuide|EclipseLink User's Guide]]'' and the <tt>org.eclipse.persistence.config.PersistenceUnitProperties</tt> class for a full list of properties available for configuration.

Revision as of 16:00, 23 June 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.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. Some of these options include customizing the database connection, caching, customizing descriptors, and more.

See How to use the Persistence Unit Properties in the EclipseLink User's Guide and the org.eclipse.persistence.config.PersistenceUnitProperties class for a full list of properties available for configuration.

Back to the top