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/UserGuide/JPA/Advanced JPA Development/Customizers

< EclipseLink‎ | UserGuide‎ | JPA‎ | Advanced JPA Development
Revision as of 13:54, 3 May 2012 by Unnamed Poltroon (Talk) (Customizers)

EclipseLink JPA


Customizers

EclipseLink allows extended configuration of the persistence unit meta-data through Java code. EclipseLink provides a descriptor and mapping API that allows its meta-data to be accessed and configured through Java code. EclipseLink also provides a session API that allows the persistence unit meta-data to be accessed and configured through Jacva code. The APIs allows access to certain extended features not provided through annotations or XML. They also allow usage of custom extensions, allow configurations that are only possible through code, and allow easier configuration of defaults and computed configurations.

EclipseLink provides two types of customizers:

  • DescriptorCustomizer : defines an interface to customize the mapping meta-data for a class.
  • SessionCustomizer : defines an interface to customize the meta-data for a persistence unit, or a set of its classes.

DescriptorCustomizer

DescriptorCustomizer is an interface that allows the customization of a class' meta-data through Java code. The interface defines a single customize(ClassDescriptor) method. A ClassDescriptor represents the meta-data for a class. The actually descriptor will be either a RelationalDescriptor for relational data or an EISDescriptor for NoSQL data.

Eclipselink-logo.gif
Version: 2.4.0 DRAFT
Other versions...

Back to the top