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/Examples/JPA/Migration/OpenJPA"

(Replacing page with '== How To Migrate from OpenJPA to EclipseLink JPA == === TO DO List === The following items need to be added * BigCollection * FetchPlan/Group * Inheritance Casting * Nativ...')
(How To Migrate from OpenJPA to EclipseLink JPA)
Line 1: Line 1:
 
== How To Migrate from OpenJPA to EclipseLink JPA ==
 
== How To Migrate from OpenJPA to EclipseLink JPA ==
  
 +
Migrating from OpenJPA to EclipseLink JPA involves a number of standrd JPA migration steps plus modification of code to handle extended functionality.
  
=== TO DO List ===
+
# EclipseLink/Examples/JPA/Migration/OpenJPA/PU_Properties
 +
# Query Hints
 +
# Extended Functionality
 +
 
 +
=== Extended Functionality ===
  
 
The following items need to be added
 
The following items need to be added
Line 10: Line 15:
 
* Inheritance Casting
 
* Inheritance Casting
 
* Native SQL with POJO results
 
* Native SQL with POJO results
 +
* Detached (Serialized) entities & relationships

Revision as of 11:06, 24 September 2009

How To Migrate from OpenJPA to EclipseLink JPA

Migrating from OpenJPA to EclipseLink JPA involves a number of standrd JPA migration steps plus modification of code to handle extended functionality.

  1. EclipseLink/Examples/JPA/Migration/OpenJPA/PU_Properties
  2. Query Hints
  3. Extended Functionality

Extended Functionality

The following items need to be added

  • BigCollection
  • FetchPlan/Group
  • Inheritance Casting
  • Native SQL with POJO results
  • Detached (Serialized) entities & relationships

Back to the top