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/Extensible"

(Dynamic Types)
(Flex Extensions)
 
(2 intermediate revisions by one other user not shown)
Line 31: Line 31:
  
 
The following are code snippets extracted from the example to illustrate key use-cases.
 
The following are code snippets extracted from the example to illustrate key use-cases.
 +
 +
=== Domain Model ===
 +
 +
Within the domain model support for managing extensions involves a map of values in your entity type as well as a definition type.
 +
 +
[[Image:El-extension-model.gif]]
  
 
==== Values Extensions ====
 
==== Values Extensions ====
Line 37: Line 43:
  
 
<source lang="java">
 
<source lang="java">
    @Transient
+
@Transient
  
    @ValuesExtensions(table = @Table(name = "emp_ext"),  
+
@ValuesExtensions(table = @Table(name = "emp_ext"),  
            id = @Column(name = "EXT_ID"),  
+
        id = @Column(name = "EXT_ID"),  
            value = @Column(name = "EXT_VALUE"))
+
        value = @Column(name = "EXT_VALUE"))
    private Map<String, Object> extensions;
+
private Map<String, Object> extensions;
 
</source>
 
</source>
  
Line 60: Line 66:
 
</source>
 
</source>
  
''Note: The mapping must be @Transient to avoid the default mappings being applied. The confiuration section below shows how the mapping will be enabled.''
+
''Note: The mapping must be @Transient to avoid the default mappings being applied. The configuration section below shows how the mapping will be enabled.''
  
 
The underlying schema for the extension storage would look like:
 
The underlying schema for the extension storage would look like:

Latest revision as of 16:21, 7 March 2011

Catnicon.gifUNDER CONSTRUCTIONCatnicon.gif

DISCLAIMER: This example illustrates how EclipseLink can be used with extensible entity types. The new API being developed for EclipseLink Indigo may not match this example. As the API is defined this example will be updated to reflect the final API of EclipseLink 2.3.

Extensible Entities Example

This example illustrates how EclipseLink 2.2 can be used to build a domain model that allows addition 'extension' properties, relationships, and types to added and used in the application. This approach to extensible properties includes storing the definition of the extension and limiting the entity to allowing only extension values that have been defined. This will also allow greater sharing of extension information between application instances and exposing the extended properties in the JPA 2.0 metamodel.

NOTE: This functionality is being formalized into new features for EclipseLink Indigo (2.3) in its Extensibility features.

Getting the Code

The example is being developed within the trunk of EclipseLink:

Usage Instructions

  1. Download the example project from SVN
  2. Configure project within your Eclipse development environment with necessary library dependencies
    • EclipseLink 2.2
    • JDBC Driver
    • JUnit
  3. Configure database usage with PU properties
  4. Run examples and/or test cases

Code Examples

The following are code snippets extracted from the example to illustrate key use-cases.

Domain Model

Within the domain model support for managing extensions involves a map of values in your entity type as well as a definition type.

El-extension-model.gif

Values Extensions

Values extensions use a separate table to store the extension properties. In this example the Employee entity type uses values extensions and is configured as:

@Transient
 
@ValuesExtensions(table = @Table(name = "emp_ext"), 
        id = @Column(name = "EXT_ID"), 
        value = @Column(name = "EXT_VALUE"))
private Map<String, Object> extensions;

It is annotated as @Transient so that the default JPA mappings are not applied. The configuration section below shows how the mapping is actually enabled.

El-values-extensions-schema.gif

Flex Extensions

In this example the Address class uses flex extensions and is configured as:

@Transient
 
@FlexExtensions(initial=2, create=false)
private Map<String, Object> extensions = new HashMap<String, Object>();

Note: The mapping must be @Transient to avoid the default mappings being applied. The configuration section below shows how the mapping will be enabled.

The underlying schema for the extension storage would look like:

El-flex-extensions-schema.gif

Add Values Extensions

ExtensionManager empExtMgr = new ExtensionManagerHelper(em).getExtensionManager(Employee.class);
 
empExtMgr.addExtension("middleName", String.class);
empExtMgr.addExtension("age", int.class);
empExtMgr.addExtension("alias", String.class);

Configuration

In order to enable the extensions a session customizer is used. This will use the ExtensionManagerHelper to enable extensions usage in the specified classes.

src/model.extensions.ExtensionsCustomizer

public class ExtensionsCustomizer implements SessionCustomizer {
 
    public void customize(Session session) throws Exception {
        ExtensionManagerHelper helper = new ExtensionManagerHelper(session);
 
        helper.initializeValueExtensions(Employee.class, "extensions"); 
        helper.initializeFlexExtensions(Address.class, "extensions"); 
    }
}

Dynamic Types

In addition to having extensible entities this example also combines the use of EclipseLink's DynamicEntity support to allow additional types to be added to the model and for those types to be involved in relationships with static entities as well as with their extended properties.

Create Phone Type

ExtensionManagerHelper helper = new ExtensionManagerHelper(em);
 
DynamicTypeBuilder typeBuilder = helper.getDynamicTypeBuilder("model.Phone", "phone_x");
typeBuilder.setPrimaryKeyFields("P_ID");
typeBuilder.configureSequencing("PHONE_SEQ", "P_ID");
typeBuilder.addDirectMapping("id", Integer.class, "P_ID");
typeBuilder.addDirectMapping("number", String.class, "P_NUMBER");
 
ClassDescriptor empDesc = em.unwrap(ServerSession.class).getClassDescriptorForAlias("Employee");
DynamicType fakeEmpType = new DynamicTypeImpl(empDesc, null);
typeBuilder.addOneToOneMapping("employee", fakeEmpType, "EMP_ID");
 
helper.addType(typeBuilder.getType());

Back to the top