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/Development/JPA2.0/Extended Map support"

(Design)
(Use Cases)
Line 13: Line 13:
 
=== Basic - Basic ===
 
=== Basic - Basic ===
 
* Both key and value are a basic
 
* Both key and value are a basic
* Uses a CollectionTable
+
* Target table is same for key and for the favlue
 
* CollectionTable contains foreign keys to the source, key and value
 
* CollectionTable contains foreign keys to the source, key and value
* This works like our BasicMapMapping
+
* This is BasicMapMapping
 
+
* Can also be supported with a BasicCollectionMapping with a MappedKeyMapContainerPolicy containing a DirectToFieldMapping
=== Basic - Embeddable ===
+
* Key is a basic, value is Embeddable
+
* Uses a CollectionTable
+
* CollectionTable contains - foreign keys to the source, key and all attributes of Embeddable
+
* This requires a MappedKeyMapContainerPolicy
+
 
+
=== Basic - Entity ===
+
* Key is a basic, value is Entity
+
* Several possible use cases
+
** No Join Table (bidirectional OneToMany)
+
*** Key is a Mapped value in Target Entity
+
*** Value is the Target Entity
+
*** Target Entity maps join information
+
*** This is covered by our current MapKey Support
+
** No Join Table (unidirectional OneToMany)
+
*** Same config as bidirectional OneToMany, but with new unidirectional OneToManySupport
+
** Join Table with Key
+
*** Join table contains foreign keys for each side of the relationship and the key
+
*** Value is the target entity
+
*** This requires a MappedKeyMapContainerPolicy
+
** Join Table with Key on Target
+
*** Join table contains foreign keys for each side of the relationship
+
*** Value is the target entity
+
*** Key is a mapped value of on the target entity
+
*** Our current MapKey support covers this case
+
  
 
=== Embeddable - Basic ===
 
=== Embeddable - Basic ===
 
* Key is Embeddable, value is Basic
 
* Key is Embeddable, value is Basic
* Uses a Collection Table
+
* Information about the key and the value are both stored in the target table
 
* CollectionTable contains foreign keys to the source, all the fields of the embeddable and the value
 
* CollectionTable contains foreign keys to the source, all the fields of the embeddable and the value
* This requires a MappedKeyMapContainerPolicy
+
* BasicCollectionMapping with MappedKeyMapContainerPolicy containing an AggregateObjectMapping
 +
 
 +
=== Entity - Basic ===
 +
* Key is Entity, value is Basic
 +
* target table contains foreign keys to the source, foreign keys to the key and the value
 +
* BasicCollectionMapping with MappedKeyMapContainerPolicy containing a OneToOneMapping
 +
 
 +
=== Basic - Embeddable ===
 +
* Key is a basic, value is Embeddable
 +
* target table contains - foreign keys to the source, key and all attributes of Embeddable
 +
* AggregateCollectionMapping with MappedKeyMapContainerPolicy containing a DirectToFieldMapping
  
 
=== Embeddable - Embeddable ===
 
=== Embeddable - Embeddable ===
Line 53: Line 38:
 
* Uses a Collection Table
 
* Uses a Collection Table
 
* Collection Table contains a forein key, all the fields of both embeddables (note: if key and value map to the same columns through overrides then the table will only contain one set of information about the embeddable)
 
* Collection Table contains a forein key, all the fields of both embeddables (note: if key and value map to the same columns through overrides then the table will only contain one set of information about the embeddable)
* This requires a MappedKeyMapContainerPolicy
+
* AggregateCollectionMapping with MappedKeyMapContainerPolicy containing an AggregateObjectMapping
  
=== Embeddable - Entity ===
+
=== Entity - Embeddable ===
* Key is Embdeddable, value is Entity
+
* Key is Entity, value is Embeddable
* Several Possible use cases
+
* target table contains foreign keys to the source, foreign keys to the key and all the values of the embedded value
** No Join Table (bidirectional OneToMany)
+
* AggregateCollectionMapping with MappedKeyMapContainerPolicy containing a OneToOneMapping
*** Key is a Embedded within the Entity
+
*** Value is the Entity itself
+
*** Target Entity Maps Join information
+
*** Covered by our current MapKey Support
+
** No Join Table (unidirectional OneToMany)
+
*** Same config as bidirectional OneToMany, but with new unidirectional OneToManySupport
+
** Join Table with Key
+
*** Join table contains foreign keys for each Entity and fields of Embeddable
+
*** Value is the target entity
+
*** This requires a MappedKeyMapContainerPolicy
+
** Join Table no key
+
*** Join table contains foreign keys for each Entity
+
*** Key is Embedded in target Entity
+
*** Value is target Entity
+
*** Our Current MapKey support covers this case
+
  
=== Entity - Basic ===
+
=== x - Entity ===
* Key is Entity, value is Basic
+
* The majority of the cases occur when the target is an Entity
* Uses a Collection Table
+
* The mappings: OneToMany, UnidirectionalOneToMany and ManyToMany are potentially used
* Collection table contains foreign keys to the source, foreign keys to the key and the value
+
* This requires a MappedKeyMapContainerPolicy
+
  
 +
==== Basic/Embeddable - Entity ====
 +
* Key is a basic or embeddable, and value is an entity
 +
* Several possible use cases
 +
** Key is a mapped value in target object
 +
*** Covered by our current MapKey support
 +
*** OneToMany, UnidirectionalOneToMany and ManyToMany
 +
** Key is stored in target table, but not mapped in target object
 +
*** target table contains values needed to build the target and values needed to build the key
 +
*** OneToManyMapping or UnidirectionalOneToManyMapping with MappedKeyMapContainerPolicy containing a DirectToFieldMapping or AggregateObjectMapping
 +
** Key is stored in collection table
 +
*** collection table contains foreign keys to the source, foreign keys to the value, and all fields need to build the key
 +
*** ManyToManyMapping with MappedKeyMapContainerPolicy containing a DirectToFieldMapping or AggregateObjectMapping
  
=== Entity - Embeddable ===
+
==== Entity - Entity ====
* Key is Entity, value is Embeddable
+
* Key is an Entity, Value is an Entity
* Uses a Colleciton Table
+
* Several possible use cases
* Collection table contains foreign keys to the source, foreign keys to the key and all the values of the embedded value
+
** Key is a mapped value in target object
* This requires a MappedKeyMapContainerPolicy
+
*** Covered by our current MapKey support
 
+
*** OneToMany, UnidirectionalOneToMany and ManyToMany
=== Entity - Entity ===
+
** Key is referenced from target table but not mapped in target object
* Key is Entity, value is Entity
+
*** target table contains values need to build the target, and foreign keys to the key
* Two use cases
+
*** OneToManyMapping or UnidirectionalOneToManyMapping with MappedKeyMapContainerPolicy containing a OneToOneMapping
** Join Table
+
** Key is referenced from the collection table
*** Uses a Join table
+
*** collection table contains foreign keys to the source, foreign keys to the value, and foreign keys to the key
*** Join table contains foreign keys to the source, foreign keys to the key and foreign keys to the value
+
*** ManyToManyMapping with MappedKeyMapContainerPolicy containing a OneToOneMapping
*** This requires a MappedKeyMapContainerPolicy
+
** No Join Table
+
*** Target table contains Foreign keys to source, inforamtion about target and Foreign keys to Key
+
*** Support required or UniDirectional OneToMany and Bidirectional OneToMany
+
*** This requires a MappedKeyMapContainerPolicy
+
  
 
== Design ==
 
== Design ==

Revision as of 15:34, 15 December 2008

JPA 2.0 Map Support

Enhancement Request

Issue summary

Map support as defined in JPA 2.0 will require new mapping functionality for EclipseLink. The specification will allow any JPA 1.0 relationship mapping to be stored in a map with key being a primitive, an Embeddable or an Entity. For this support no user defined mapping or property exists on the target of the relationship as is the case in our current support. An additional complication is that the location of the Key fields exist on the relation table if one exists.

The Solution in General

Map behavior in EclipseLink is handled through ContainerPolicy. These mappings will be no different. a new subclass of MapContainerPolicy (MappedKeyMapContainerPolicy) will be added that is capable of reading and writing map keys that are stored in a database table, but not in the owning Entity, itself.

Use Cases

Both keys and values can be either of the following types: Basic, Embeddable, Entity. This results in the following types of maps.

Basic - Basic

  • Both key and value are a basic
  • Target table is same for key and for the favlue
  • CollectionTable contains foreign keys to the source, key and value
  • This is BasicMapMapping
  • Can also be supported with a BasicCollectionMapping with a MappedKeyMapContainerPolicy containing a DirectToFieldMapping

Embeddable - Basic

  • Key is Embeddable, value is Basic
  • Information about the key and the value are both stored in the target table
  • CollectionTable contains foreign keys to the source, all the fields of the embeddable and the value
  • BasicCollectionMapping with MappedKeyMapContainerPolicy containing an AggregateObjectMapping

Entity - Basic

  • Key is Entity, value is Basic
  • target table contains foreign keys to the source, foreign keys to the key and the value
  • BasicCollectionMapping with MappedKeyMapContainerPolicy containing a OneToOneMapping

Basic - Embeddable

  • Key is a basic, value is Embeddable
  • target table contains - foreign keys to the source, key and all attributes of Embeddable
  • AggregateCollectionMapping with MappedKeyMapContainerPolicy containing a DirectToFieldMapping

Embeddable - Embeddable

  • Key is Embeddable, value is Embeddable
  • Uses a Collection Table
  • Collection Table contains a forein key, all the fields of both embeddables (note: if key and value map to the same columns through overrides then the table will only contain one set of information about the embeddable)
  • AggregateCollectionMapping with MappedKeyMapContainerPolicy containing an AggregateObjectMapping

Entity - Embeddable

  • Key is Entity, value is Embeddable
  • target table contains foreign keys to the source, foreign keys to the key and all the values of the embedded value
  • AggregateCollectionMapping with MappedKeyMapContainerPolicy containing a OneToOneMapping

x - Entity

  • The majority of the cases occur when the target is an Entity
  • The mappings: OneToMany, UnidirectionalOneToMany and ManyToMany are potentially used

Basic/Embeddable - Entity

  • Key is a basic or embeddable, and value is an entity
  • Several possible use cases
    • Key is a mapped value in target object
      • Covered by our current MapKey support
      • OneToMany, UnidirectionalOneToMany and ManyToMany
    • Key is stored in target table, but not mapped in target object
      • target table contains values needed to build the target and values needed to build the key
      • OneToManyMapping or UnidirectionalOneToManyMapping with MappedKeyMapContainerPolicy containing a DirectToFieldMapping or AggregateObjectMapping
    • Key is stored in collection table
      • collection table contains foreign keys to the source, foreign keys to the value, and all fields need to build the key
      • ManyToManyMapping with MappedKeyMapContainerPolicy containing a DirectToFieldMapping or AggregateObjectMapping

Entity - Entity

  • Key is an Entity, Value is an Entity
  • Several possible use cases
    • Key is a mapped value in target object
      • Covered by our current MapKey support
      • OneToMany, UnidirectionalOneToMany and ManyToMany
    • Key is referenced from target table but not mapped in target object
      • target table contains values need to build the target, and foreign keys to the key
      • OneToManyMapping or UnidirectionalOneToManyMapping with MappedKeyMapContainerPolicy containing a OneToOneMapping
    • Key is referenced from the collection table
      • collection table contains foreign keys to the source, foreign keys to the value, and foreign keys to the key
      • ManyToManyMapping with MappedKeyMapContainerPolicy containing a OneToOneMapping

Design

Archived Initial Design

The following contains information about the initial design proposal. It has now been modified.

The Solution in General

The general approach to implementing this functionality will be to produce Map mappings that encapsulate two EclipseLink mappings. A generated mapping that represents the Key attribute and a user defined mapping that represents the value of the map. It is expected that two Map Mappings will be needed. A Mapping where the Key mapping columns are found in the target table and another where the Key mapping columns are found in the relation table (CollectionTableMapMapping).

The Details

Target Table Map Mapping
Enhancement Request
This support will cover the case where the Map key columns exist in the target table
EclipseLink Mappings Involved
- AggregateCollectionMapping
- Bi-directional OneToMany
- New Uni-directional OneToMany mapping
JPA Mappings
- Bi-directional OneToMany mapping
- Uni-directional OneToMany with @JoinColum
- ElementCollection<*, Primitive> mapping
- ElementCollection<*, Embeddable> mapping
Join Table Map Mapping (or CollectionTableMapMapping)
Enhancement Request
This support will cover the case where the Map key columns exist in the Join table
EclipseLink Mappings Involved
- ManyToMany mapping
JPA Mappings
- default Uni-directional OneToMany with @JoinColum
- ManyToMany mapping
- Note: The specification disallows both sides of a mapping using a Map collection but there is no technical reason to do this as one side will be read-only anyway.

Back to the top