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

Introduction to Relational Mappings (ELUG)

Revision as of 19:42, 29 November 2007 by Rick.sapir.oracle.com (Talk | contribs) (Many-to-Many Mapping)

Related Topics

A relational mapping transforms any object data member type to a corresponding relational database (SQL) data source representation in any supported relational database. Relational mappings let you map an object model into a relational data model.

Relational mappings transform object data members to relational database fields. Use them to map simple data types including primitives (such as int), JDK classes (such as String), and large object (LOB) values. You can also use them to transform object data members that reference other domain objects by way of association where data source representations require object identity maintenance (such as sequencing and back references) and possess various types of multiplicity and navigability. The appropriate mapping class is chosen primarily by the cardinality of the relationship.

Do not confuse relational mappings with object-relational data type mappings (see Introduction to Object-Relational Data Type Mappings). An object-relational data type mapping transforms certain object data member types to structured data source representations optimized for storage in specialized object-relational data type databases such as Oracle9i Database Server. Object-relational data type mappings let you map an object model into an object-relational data type data model. In general, you can use relational mappings with any supported relational database. You can only use object-relational data type mappings with specialized object-relational data type databases optimized to support object-relational data type data source representations.

For information on mapping concepts and features common to more than one type of EclipseLink mappings, see Introduction to Mappings.


Relational Mapping Types

EclipseLink supports the relational mappings listed in the following table.

EclipseLink Relational Mapping Types

Type of Mapping Description EclipseLink Workbench Java

Direct-to-field (see #Direct-to-Field Mapping)

Map a Java attribute directly to a database field.

Supported

Supported

Direct-to-XMLType (see #Direct-to-XMLType Mapping)

Map Java attributes to an XMLType column in an Oracle Database (introduced in version 9.2.0.1).

Supported

Supported

One-to-one (see #One-to-One Mapping)

Map a reference to another persistent Java object to the database.

Supported

Supported

Variable one-to-one (see #One-to-One Mapping)

Map a reference to an interface to the database.

Supported

Supported

One-to-many (see #One-to-Many Mapping)

Map Java collections of persistent objects to the database.

Supported

Supported

Many-to-many (see #Many-to-Many Mapping)

Use an association table to map Java collections of persistent objects to the database.

Supported

Supported

Aggregate collection (see #Collection Mapping)

Map Java collections of persistent objects to the database.

Unsupported

Supported

Direct collection (see #Direct Collection Mapping)

Map Java collections of objects that do not have descriptors.

Supported

Supported

Direct map (see #Direct Map Mapping)

Direct map mappings store instances that implement java.util.Map.

Supported

Supported

Aggregate object (see #Aggregate Object Mapping)

Create strict one-to-one mappings that require both objects to exist in the same database row.

Supported

Unsupported

Transformation (see #Transformation Mapping)

Create custom mappings where one or more fields can be used to create the object to be stored in the attribute.

Supported

Supported

Relational Mapping Concepts

This section introduces direct mapping concepts unique to EclipseLink, including the following:


Directionality

The direction of a relationship may be either unidirectional or bidirectional. In a unidirectional relationship, only one entity bean has a relationship field that refers to the other. All EclipseLink relational mappings are unidirectional, from the class being described (the source class) to the class with which it is associated (the target class). The target class does not have a reference to the source class in a unidirectional relationship.

In a bidirectional relationship, each entity bean has a relationship field that refers to the other bean. Through the relationship field, an entity bean's code can access its related object. To implement a bidirectional relationship (classes that reference each other), use two unidirectional mappings with the sources and targets reversed.


Note: Maintenance of bidirectional relationships presents a number of technical challenges. For more information, see the following:

Converters and Transformers

You can store object attributes directly in a database table as follows:


Using a Direct Mapping

If the attribute type is comparable to a database type, the information can be stored directly simply by using a direct-to-field mapping (see Direct-to-Field Mapping).


Using a Converter Mapping

If the attribute type is comparable to a database type but requires conversion, the information can be stored directly by using a direct-to-field mapping (see #Direct-to-Field Mapping) and an appropriate Converter instance.

In the previous release, EclipseLink provided subclasses of DirectToFieldMapping for object type direct mappings, serialized object direct mappings, and type conversion direct mappings. In this release, these subclasses are deprecated. In their place, we recommend that you use the DirectToFieldMapping method setConverter and the corresponding Converter instance. This table summarizes these changes.


Using a Converter for Direct-to-Field Mappings

Deprecated DirectToFieldMapping subclass... Replaced by Converter instance...

ObjectTypeMapping

ObjectTypeConverter (see Object Type Converter)

SerializedObjectMapping

SerializedObjectConverter (see Serialized Object Converter)

TypeConversionMapping

TypeConversionConverter (see Type Conversion Converter


If the application's objects contain attributes that cannot be represented as direct-to-field with an existing converter, use a direct-to-field mapping with a custom converter.


Using a Transformation Mapping

If there is no database primitive type that is logically comparable to the attribute's type, or, if an attribute requires data from multiple fields, it must be transformed on its way to and from the database.

In this case, use a transformation mapping (see #Transformation Mapping).


Direct-to-Field Mapping

Use direct-to-field mappings to map primitive object attributes, or non persistent regular objects, such as the JDK classes. For example, use a direct-to-field mapping to store a String attribute in a VARCHAR field.


Direct-to-Field Mapping Example

Direct-to-Field Mapping illustrates a direct-to-field mapping between the Java attribute city and the relational database column CITY. Similarly, direct-to-field mappings could be defined from country to COUNTRY, id to ADDRESS_ID, established to EST_DATE, and province to PROVINCE.


Direct-to-Field Mapping

Direct-to-Field Mapping

You can use a direct-to-field mapping with any of the following Converter instances:

You can use a direct-to-field mapping with a change policy (see Configuring Change Policy|Configuring Change Policy.

See Configuring a Relational Direct-to-Field Mapping for more information.

Direct-to-XMLType Mapping

Using a direct-to-XMLType mapping, you can map XML data in the form of a String or an org.w3c.dom.Document object to an XMLType column in an Oracle Database (introduced in version 9.2.0.1).

If you plan to use direct-to-XMLType mappings in Workbench and the EclipseLink runtime, you must include the Oracle Database xdb.jar file in the Workbench classpath (see Configuring the Workbench Environment).

The EclipseLink query framework provides a number of expression operators you can use to create queries based on the content of that XML data (see XMLType Functions).

See Configuring a Relational Direct-to-XMLType Mapping for more information.

One-to-One Mapping

One-to-one mappings represent simple pointer references between two Java objects. In Java, a single pointer stored in an attribute represents the mapping between the source and target objects. Relational database tables implement these mappings using foreign keys.

One-to-One Mappings illustrates a one-to-one relationship from the address attribute of an Employee object to an Address object. To store this relationship in the database, create a one-to-one mapping between the address attribute and the Address class. This mapping stores the id of the Address instance in the EMPLOYEE table when the Employee instance is written. It also links the Employee instance to the Address instance when the Employee is read from the database. Because an Address does not have any references to the Employee, it does not have to provide a mapping to Employee.

For one-to-one mappings, the source table normally contains a foreign key reference to a record in the target table. In One-to-One Mappings, the ADDR_ID field of the EMPLOYEE table is a foreign key.


One-to-One Mappings

One-to-One Mappings

You can also implement a one-to-one mapping where the target table contains a foreign key reference to the source table. In One-to-One Mappings, the database design would change such that the ADDRESS row would contain the EMP_ID to identify the Employee to which it belonged. In this case, the target must also have a relationship mapping to the source.

The update, insert and delete operations, which are normally done for the target before the source for privately owned one-to-one relationships, are performed in the opposite order when the target owns the foreign key. Target foreign keys normally occur in bidirectional one-to-one mappings (see #Directionality), because one side has a foreign key and the other shares the same foreign key in the other's table.

Target foreign keys can also occur when large cascaded composite primary keys exist (that is, one object's primary key is composed of the primary key of many other objects). In this case it is possible to have a one-to-one mapping that contains both foreign keys and target foreign keys.

In a foreign key, EclipseLink automatically updates the foreign key value in the object's row. In a target foreign key, it does not. In EclipseLink, use the Target Foreign Key option when a target foreign key relationship is defined.

When mapping a relationship, you must understand these differences between a foreign key and a target foreign key, to ensure that the relationship is defined correctly.

In a bidirectional relationship where the two classes in the relationship reference each other, only one of the mappings should have a foreign key. The other mapping should have a target foreign key. If one of the mappings in a bidirectional relationship is a one-to-many mapping, see Configuring a Relational Variable One-to-One Mapping for details.

You can use a one-to-one mapping with a change policy (see Configuring Change Policy.

See Configuring a Relational One-to-One Mapping for more information.

Variable One-to-One Mapping

Variable class relationships are similar to polymorphic relationships, except that in this case the target classes are not related through inheritance (and thus not good candidates for an abstract table), but through an interface.

To define variable class relationships in Workbench, use the variable one-to-one mapping selection, but choose the interface as the reference class. This makes the mapping a variable one-to-one. When defining mappings in Java code, use the VariableOneToOneMapping class.

EclipseLink supports variable relationships only in one-to-one mappings. It handles this relationship in two ways:


Variable One-to-One Mappings with Class Indicator

Variable One-to-One Mappings with Class Indicator

See Chapter 37, "Configuring a Relational Variable One-to-One Mapping" for more information.

One-to-Many Mapping

One-to-many mappings are used to represent the relationship between a single source object and a collection of target objects. They are a good example of something that is simple to implement in Java using a Collection (or other collection types) of target objects, but difficult to implement using relational databases.

In a Java Collection, the owner references its parts. In a relational database, the parts reference their owner. Relational databases use this implementation to make querying more efficient.

The purpose of creating this one-to-one mapping in the target is so that the foreign key information can be written when the target object is saved. Alternatives to the one-to-one mapping back reference include the following:

  • Use a direct-to-field mapping to map the foreign key and maintain its value in the application. Here the object model does not require a back reference, but the data model still requires a foreign key in the target table.
  • Use a many-to-many mapping to implement a logical one-to-many. This has the advantage of not requiring a back reference in the object model and not requiring a foreign key in the data model. In this model the many-to-many relation table stores the collection. It is possible to put a constraint on the join table to enforce that the relation is a logical one-to-many relationship.


One-to-Many Relationships

One-to-Many Relationships

Note: The phone attribute shown in One-to-Many Relationships is of type Vector. You can use a Collection interface (or any class that implements the Collection interface) for declaring the collection attribute. See Configuring Container Policy for details.


You can use a many-to-many mapping with a change policy (see Configuring Change Policy.

See Configuring a Relational One-to-Many Mapping for more information.

Many-to-Many Mapping

Many-to-many mappings represent the relationships between a collection of source objects and a collection of target objects. They require the creation of an intermediate table for managing the associations between the source and target records.

This figure illustrates a many-to-many mapping in Java and in relational database tables.


Many-to-many Relationships

Many-to-many Relationships

Note: The projects attribute shown in Many-to-many Relationships is of type Vector. You can use a Collection interface (or any class that implements the Collection interface) for declaring the collection attribute. See Configuring Container Policy for details.


Many-to-many mappings are implemented using a relation table. This table contains columns for the primary keys of the source and target tables. Composite primary keys require a column for each field of the composite key. The intermediate table must be created in the database before using the many-to-many mapping.

The target class does not have to implement any behavior for the many-to-many mappings. If the target class also creates a many-to-many mapping back to its source, then it can use the same relation table, but one of the mappings must be set to read-only. If both mappings write to the table, they can cause collisions.

Indirection (lazy loading) is enabled by default in a many-to-many mapping, which requires that the attribute have the ValueHolderInterface type or transparent collections. For more information on indirection, see Indirection (Lazy Loading).

You can use a many-to-many mapping with a change policy (see Configuring Change Policy).

See Configuring a Relational Many-to-Many Mapping for more information.

Aggregate Collection Mapping

Aggregate collection mappings are used to represent the aggregate relationship between a single-source object and a collection of target objects. Unlike the EclipseLink one-to-many mappings, in which there should be a one-to-one back reference mapping from the target objects to the source object, there is no back reference required for the aggregate collection mappings, because the foreign key relationship is resolved by the aggregation.


Note: To use aggregate collections with Workbench, you must use an amendment method (see Configuring Amendment Methods), or manually edit the project source to add the mapping.


Although aggregate collection mappings are similar to one-to-many mappings, they are not replacements for one-to-many mappings. Use aggregate collections only in situations where the target collections are of a reasonable size and if having a one-to-one back mapping is difficult.

Because one-to-many relationships offer better performance and are more robust and scalable, consider using a one-to-many relationship rather than an aggregate collection. In addition, aggregate collections are privately owned by the source of the relationship and must not be shared or referenced by other objects.

This section describes the following:

See Configuring a Relational Aggregate Collection Mapping for more information.


Aggregate Collection Mappings and Inheritance

Aggregate collection descriptors can use inheritance. You must also declare subclasses as aggregate collection. The subclasses can have their own mapped tables, or share the table with their parent class. See Descriptors and Inheritance for more information on inheritance.

In a Java Collection, the owner references its parts. In a relational database, the parts reference their owners. Relational databases use this implementation to make querying more efficient.

Aggregate collection mappings require a target table for the target objects.

To implement an aggregate collection mapping, the following must take place:

  • The descriptor of the target class must declare itself as an aggregate collection object. Unlike the aggregate object mapping, in which the target descriptor does not have a specific table to associate with, there must be a target table for the target object.
  • The descriptor of the source class must add an aggregate collection mapping that specifies the target class.


Aggregate Collection Mappings and EJB

You can use aggregate collection mappings with entity beans if the source of the relationship is an entity bean or Java object, and the mapping targets are regular Java objects. Entity beans cannot be the target of an aggregate object mapping.


How to Implement Aggregate Collection Mappings

To implement an aggregate collection mapping, the following must take place:

  • The descriptor of the target class must declare itself to be an aggregate collection object. Unlike the aggregate object mapping, in which the target descriptor does not have a specific table to associate with, there must be a target table for the target object.
  • The descriptor of the source class must add an aggregate collection mapping that specifies the target class.

Direct Collection Mapping

Direct collection mappings store collections of Java objects that are not EclipseLink-enabled. The object type stored in the direct collection is typically a Java type, such as String.

It is also possible to use direct collection mappings to map a collection of non-String objects. For example, it is possible to have an attribute that contains a collection of Integer or Date instances. The instances stored in the collection can be any type supported by the database and has a corresponding wrapper class in Java.

Support for primitive data types such as int is not provided, because Java Collection holds only objects.

Direct Collection Mappings illustrates how a direct collection is stored in a separate table with two fields. The first field is the reference key field, which contains a reference to the primary key of the instance owning the collection. The second field contains an object in the collection and is called the direct field. There is one record in the table for each object in the collection.


Direct Collection Mappings

Direct Collection Mappings

Note: The responsibilities attribute shown in Direct Collection Mappings is of type Vector. You can use a Collection interface (or any class that implements the Collection interface) for declaring the collection attribute. See Configuring Container Policy for details.


Maps are not supported for direct collection because there is no key value.

You can use a direct collection mapping with any of the following Converter instances:

You can use a direct collection mapping with a change policy (see Configuring Change Policy).

See [[Configuring a Relational Direct Collection (ELUG)|Chapter 41, "Configuring a Relational Direct Collection Mapping] for more information.

Direct Map Mapping

Direct map mappings store instances that implement java.util.Map. Unlike one-to-many or many-to-many mappings, the keys and values of the map in this type of mapping are Java objects that do not have descriptors. The object type stored in the key and the value of direct map are Java primitive wrapper types such as String objects.

Direct Map Mappings illustrates how a direct map is stored in a separate table with three fields. The first field (EMPID) is the reference key field, which contains a reference to the primary key of the instance owning the collection. The second field (ADDRESS) contains an object in the collection and is called the direct value field. The third field (TYPE) contains the direct key field. In this example, the direct map uses a object type converter for the direct key field, converting the single character W in the database to the full string Work in the object (and H to Home).


Direct Map Mappings

Direct Map Mappings

You can use a direct collection mapping with any of the following Converter instances:

You can use a direct map mapping with a change policy (see Configuring Change Policy).

See Chapter 43, "Configuring a Relational Direct Map Mapping" for more information.


Aggregate Object Mapping

Two objects–a source (parent or owning) object and a target (child or owned) object–are related by aggregation if there is a strict one-to-one relationship between them and all the attributes of the target object can be retrieved from the same table(s) as the source object. This means that if the source object exists, then the target object must also exist and if the source object is destroyed, then the target object is also destroyed.

An aggregate mapping allows you to associate data members in the target object with fields in the source object's underlying database tables.

You configure the aggregate mapping in the source object's descriptor. However, before doing so, you must designate the target object's descriptor as an aggregate (see Configuring a Relational Descriptor as a Class or Aggregate Type).

Aggregate objects are privately owned and should not be shared or referenced by other objects.

You cannot configure one-to-one, one-to-many, or many-to-many mappings from a nonaggregate object to an aggregate target object.

You can configure such mappings from an aggregate target object to another nonaggregate object. If you configure a one-to-many mapping from an aggregate target object to another nonaggregate object, you must configure a one-to-one mapping from the other object back to the source object that owns the aggregate (instead of to the aggregate target object itself). This is because the source object contains the table and primary key information of the aggregate target.

You can configure inheritance for a descriptor designated as an aggregate (see Descriptors and Inheritance), however, in this case, all the descriptors in the inheritance tree must be aggregates. Aggregate and class descriptors cannot exist in the same inheritance tree.

This section describes the following:

You can use an aggregate object mapping with a change policy (see Configuring Change Policy.

For more information on configuring an aggregate object relationship mapping, see Configuring a Relational Aggregate Object Mapping.


Aggregate Object Mappings with a Single Source Object

Aggregate Object Mapping with a Single Source Object shows an example aggregate object mapping between source object Employee and target object Period. In this example, the target object is not shared by other types of source object.


Aggregate Object Mapping with a Single Source Object

Aggregate Object Mapping with a Single Source Object

Aggregate target classes not shared among multiple source classes can have any type of mapping, including other aggregate object mappings.


Aggregate Object Mappings with Multiple Source Objects

Aggregate Object Mapping with Multiple Source Objects shows an example aggregate object mapping in which different source objects–Employee and Project–map instances of the same type of target object, Period.


Aggregate Object Mapping with Multiple Source Objects

Aggregate Object Mapping with Multiple Source Objects

When you configure the aggregate object mapping in the source object, you choose the source object table for that particular mapping. This allows different source types to store the same target information within their tables. Each source object's table may use different field names. EclipseLink automatically manages the case where multiple source object tables use different field names.

For example, in Aggregate Object Mapping with Multiple Source Objects, The Employee attribute employPeriod is mapped by an aggregate object mapping to target object Period. This mapping associates Period attribute startDate with EMPLOYEE table field START_DATE. The Project attribute projectPeriod is also mapped by an aggregate object mapping to target object Period. This mapping associates Period attribute startDate with PROJECT table field S_DATE.

Aggregate target classes shared with multiple source classes cannot have one-to-many or many-to-many mappings.


How to Implement an Aggregate Object Relationship Mapping

You must ensure that the following takes place:

  • The descriptor of the target class declares itself to be an aggregate object. Because all its information comes from its parent's table(s), the target descriptor does not have a specific table associated with it. You must, however, choose one or more candidate table(s) from which you can use fields in mapping the target.In the example above, you could choose the EMPLOYEE table so that the START_DATE and END_DATE fields are available during mapping.
  • The descriptor of the source class adds an aggregate object mapping that specifies the target class.In the example above, the Employee class has an attribute called employPeriod that would be mapped as an aggregate object mapping with Period as the reference class.The source class must ensure that its table has fields that correspond to the field names registered with the target class.
  • If a source object has a null target reference, EclipseLink writes NULLs to the aggregate database fields (see Configuring Allowing Null Values). When the source is read from the database, it can handle this null target in one of two ways:
    • Create an instance of the object with all its attributes equal to null.
    • Put a null reference in the source object without instantiating a target. (This is the default method of handling null targets.)


Transformation Mapping

Use transformation mappings for specialized translations for how a value is represented in Java and how it is represented in the database.

Tip: Use transformation mappings only when mapping multiple fields into a single attribute. Because of the complexity of transformation mappings, it is often easier to perform the transformation with a converter or getter and setter methods of a direct-to-field mapping. See Configuring a Relational Direct-to-Field Mapping for more information.

Transformation Mappings illustrates a transformation mapping. The values from the B_DATE and B_TIME fields are used to create a java.util.Date to be stored in the birthDate attribute.

' Transformation Mappings

Transformation Mappings

Often, a transformation mapping is appropriate when values from multiple fields are used to create an object. This type of mapping requires that you provide an attribute transformation that is invoked when reading the object from the database. This must have at least one parameter that is an instance of Record. In your attribute transformation, you can use Record method get to retrieve the value in a specific column. Your attribute transformation can specify a second parameter, when it is an instance of Session. The Session performs queries on the database to get additional values needed in the transformation. The transformation should return the value to be stored in the attribute.

Transformation mappings also require a field transformation for each field, to be written to the database when the object is saved. The transformation returns the value to be stored in that field.

See Configuring a Relational Transformation Mapping for more information.



Copyright Statement

Back to the top