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

EclipseLink/Development/2.1/AdvancedJPA Queries/FetchGroup

< EclipseLink‎ | Development‎ | 2.1‎ | AdvancedJPA Queries
Revision as of 09:48, 17 February 2010 by Douglas.clarke.oracle.com (Talk | contribs) (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...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 ...

Back to the top