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/GettingStarted

This page will focus on helping new users to get started with EclipseLink. It will have a sub-section/page per persistence services walking through its basic configuration and usage.

Object-Relational

Java Persistence API

Native ORM

Oracle TopLink

For those developers who have experience with or are already using Oracle TopLink's Native object-relational capabilities they will be able to easily convert their application over to use EclipseLink. The basic steps involved include:

  1. Migration of application code. Using the package-rename utility the application's source base can be automatically migrated from using the oracle.toplink* packages to using the org.eclipse.persistence.* packages.

MOXy: Object-XML

Java XML Binding (JAXB)

Native MOXy

Oracle TopLink OXM

For those developers who have experience with or are already using Oracle TopLink's Object-XML mapping capabilities they will be able to easily convert their application over to using EclipseLink.

  1. Migration of application code. Using the package-rename utility the application's source base can be automatically migrated from using the oracle.toplink* packages to using the org.eclipse.persistence.* packages.

Back to the top