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

EclipseLink/UserGuide/JPA/Advanced JPA Development/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 Java 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 method, customize(ClassDescriptor). The ClassDescriptor argument represents the meta-data for a class. The actually descriptor will be an instance of either RelationalDescriptor for relational data, or an EISDescriptor for NoSQL data.

A DescriptorCustomizer can be set on an Entity or Embeddable class using the @Customizer annotation or <customizer> XML element.

DescriptorCustomizer example

public class MyCustomizer implements DescriptorCustomizer {
  public void customize(ClassDescriptor descriptor) {
    DirectToFieldMapping genderMapping = (DirectToFieldMapping)descriptor.getMappingForAttributeName("gender");
    ObjectTypeConverter converter = new ObjectTypeConverter();
    convert.addConversionValue("M", Gender.MALE);
    convert.addConversionValue("F", Gender.FEMALE);
    genderMapping.setConverter(converter);
  }
}
@Entity
@Customizer(MyCustomizer.class)
public class Employee {
 ...
}


SessionCustomizer

SessionCustomizer is an interface that allows the customization of the persistence unit meta-data through Java code. The interface defines a single method, customize(Session). The Session argument represents the meta-data for a persistence unit. The actually session will be an instance of either ServerSession for most applications, or an SessionBroker for composite persistence units.

A SessionCustomizer can be set as a persistence unit property in the persistence.xml file or persistence unit properties map.

SessionCustomizer example

public class MySessionCustomizer implements SessionCustomizer {
  public void customize(Session session) {
    session.getLogin().setConnector(new JNDIConnector(MyDataSourceManager.getDataSource());
 
    for (ClassDescriptor descriptor : session.getDescriptors().values()) {
      descriptor.getCachePolicy().setIdentityMapSize(1000);
    }
  }
}
<persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence persistence_2_0.xsd" version="2.0">
    <persistence-unit name="acme" transaction-type="RESOURCE_LOCAL">
        <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
        <exclude-unlisted-classes>false</exclude-unlisted-classes>
        <properties>
            <property name="eclipselink.session.customizer" value="com.acme.MySessionCustomizer"/>
        </properties>
    </persistence-unit>
</persistence>


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

Back to the top