Skip to main content

Notice: This Wiki is now read only and edits are no longer 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/2.1/AdvancedJPA Queries/FetchGroup"

(New page: = EclipseLink 2.1: Enhanced FetchGroup Support = This feature will enhance EclipseLink's existing FetchGroup support to include the following additional features: * Related Bugs * {{bug...)
 
(Previous FetchGroup Functionality)
Line 19: Line 19:
 
** 1:1/M:1 attributes in the FetchGroup will have their FK columns read
 
** 1:1/M:1 attributes in the FetchGroup will have their FK columns read
 
** Collection attributes ...
 
** Collection attributes ...
 +
 +
=== Configuration ===
 +
 +
==== Mapping ====
 +
 +
==== API ====
 +
 +
==== JPA Query Hints ====

Revision as of 09:59, 17 February 2010

EclipseLink 2.1: Enhanced FetchGroup Support

This feature will enhance EclipseLink's existing FetchGroup support to include the following additional features:

Related Bugs

Previous FetchGroup Functionality

In 2.0 and earlier releases of EclipseLink FetchGroup had the following functionality:

  • Requires the entity class to implement FetchGroupTracker, which is generally only added during weaving.
  • Supported single level attributes only
  • The attributes specified and required (identify and version locking columns) are read on the initial query
  • Requests for attributes not in the FetchGroup will be loaded together on a request for an un-fetched attribute (2 level load only).
  • Relationship attributes
    • 1:1/M:1 attributes in the FetchGroup will have their FK columns read
    • Collection attributes ...

Configuration

Mapping

API

JPA Query Hints

Back to the top