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

(Customizers)
(Customizers)
Line 11: Line 11:
  
 
=Customizers=
 
=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 or computed configurations.
+
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:
 
EclipseLink provides two types of customizers:

Revision as of 13:54, 3 May 2012

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