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

Customizing the EclipseLink Application (ELUG)

Revision as of 15:46, 13 June 2008 by Liza.rekadze.oracle.com (Talk | contribs) (Configuring Oracle Database Proxy Authentication for a JPA Application)

There are multiple ways to customize your EclipseLink application, ranging from creating custom data types to using JPA extensions.


By design, EclipseLink can adapt to a variety of relational and nonrelational data sources.

To integrate EclipseLink with a data source that is not directly supported by the EclipseLink API,we recommend that you use an EIS project or a XML project ).

Using an EIS project, you can integrate your EclipseLink-enabled application with any nonrelational data source that supports a JCA adapter and any supported EIS record type, including indexed, mapped, or XML. If no JCA adapter exists for your target data source, you can concentrate your integration efforts on creating an adapter. Simultaneously, you can build your application according to JCA specifications. Although this still requires custom development effort, it is more efficient than trying to extend EclipseLink classes and provides you with a JCA adapter that you can leverage in any other project (making it a better value).

Using an XML project, you can integrate your EclipseLink-enabled application with Web services or other XML-message based designs.

The remainder of this chapter describes other customization options provided by the EclipseLink API.


Creating Custom Data Types

EclipseLink provides support for all the most common Java data types. This table lists the EclipseLink mapping extensions that you can use to support custom data types. You can also create your object converter to allow conversion between a data type and your own Java type.

Mapping Extensions for Custom Data Types

Extension Description

Object Type Converter

An extension of direct and direct collection mappings that lets you match a fixed number of data values to Java objects. Use this converter when the values in the schema differ from those in Java

Serialized Object Converter

An extension of direct and direct collection mappings that lets you map serializable objects, such as multimedia data, to a binary format in a data source, such as a base64 element in an XML document or Binary Large Object (BLOB) field in a database

Type Conversion Converter

An extension of direct and direct collection mappings that lets you explicitly map a data source type to a Java type. For example, a java.util.Date in Java can be mapped to a java.sql.Date in the data source.

Simple Type Translator

An extension of direct and direct collection mappings that lets you automatically translate an XML element value to an appropriate Java type based on the element's <type> attribute as defined in your XML schema.



Using the Session Customizer Class

You can customize a session at run time by specifying a session customizer–a Java class that implements the org.eclipse.persistence.internal.sessions.factories.SessionCustomizer interface.

For more information, see the following:

Using the Descriptor Customizer Class

You can customize a descriptor at run time by specifying a descriptor customizer–a Java class that implements the org.eclipse.persistence.internal.sessions.factories.DescriptorCustomizer interface.

For more information, see the following:

Using the Descriptor Amendment Methods

To customize descriptors, you can use their amendment methods.

For more information, see the following:


Using EclipseLink JPA Extensions

If you are developing an EclipseLink JPA application, use EclipseLink JPA metadata annotations and XML extensions for customization.

For more information, see Using EclipseLink JPA Extensions.


Configuring Oracle Database Proxy Authentication for JPA Applications

For information, see Configuring Oracle Database Proxy Authentication for a JPA Application.



Copyright Statement

Copyright © Eclipse Foundation, Inc. All Rights Reserved.