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/OSGi/Developing with EclipseLink OSGi in PDE"

m (New page: = Developing with EclipseLink OSGi in PDE = <pre> NOTE: These instructions apply to the Galileo release. </pre> EclipseLink is the the only comprehensive Java persistence framework that ...)
 
m
 
(28 intermediate revisions by the same user not shown)
Line 1: Line 1:
= Developing with EclipseLink OSGi in PDE =
+
The OSGi support provided by EclipseLink is deprecated and has been replaced by the Gemini JPA projectSee the [[Gemini/JPA/Documentation|Gemini documentation]] for examples.
 
+
<pre>
+
NOTE: These instructions apply to the Galileo release.
+
</pre>
+
 
+
EclipseLink is the the only comprehensive Java persistence framework that is designed for OSGiEclipseLink is available as a set of OSGi bundles that can be used with any OSGi framework.  Support is also available for [[Examples/OSGi/Equinox_Byte_Code_Weaving|byte code weaving of Entities]] when using Equinox.
+
 
+
This example illustrates how to develop a simple OSGi ''hello database'' application using Eclipse's Plug-in Development Environment (PDE) and EclipseLink.
+
 
+
== Setup ==
+
 
+
 
+
 
+
* Download Eclipse IDE with PDE
+
** A number of distributions include PDE including the Java EE, RCP, and Classic distributions.
+
** Starting with the [http://www.eclipse.org/galileo Galileo release], EclipseLink is included in thee ''Eclipse IDE for Java EE Developers'' distribution. If you download this distribution you do not need to download EclipseLink; the bundles are in the plugins folder of your Eclipse install.
+
* Install EclipseLink JPA Bundles
+

Latest revision as of 13:45, 24 October 2012

The OSGi support provided by EclipseLink is deprecated and has been replaced by the Gemini JPA project. See the Gemini documentation for examples.

Back to the top