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

Difference between revisions of "EclipseLink/Examples/OSGi"

(OSGi)
m
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
== OSGi ==
+
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.
 
+
=== Importing Javax.Persistence 2.0 ===
+
 
+
In March of 2010, the OSGi Alliance released the OSGi Enterprise Specification which defines how a number of Java EE technologies including JPA can be used within OSGi.  The [http://www.eclipse.org/gemini Gemini] project (based on EclipseLink) is building the Enterprise OSGi JPA spec implementation which will make the existing EclispeLink OSGi support, which pre-dates the specification, obsolete.  You can try out a milestone of [http://www.eclipse.org/gemini Gemini] today or use the existing EclipseLink OSGi support.  Links to examples of EclipseLink OSGi usage are provided below.
+
 
+
One issue raised by the OSGi Enterprise Specification is how to identify each API version as Java EE numbering is not based on the same strict rules as OSGi.  For example, by the OSGi versioning rules JPA 2.0 should really be 1.1 as it is fully backwards compatible with JPA 1.0 and adds additional API.  To resolve this conflict EclipseLink will provide support for JPA 1.1 (OSGi numbering) but will tag each package export with a "jpa" attribute to allow importers to specify the Java EE specification number independent of the OSGi version.   
+
 
+
So, to use JPA 2.0 in OSGi you would use the following import package declaration:
+
 
+
<pre>
+
Import-Package: javax.persistence;version="1.1.0";jpa="2.0"
+
</pre>
+
 
+
Prior to the definition of the OSGi Enterprise specification, EclipseLink shipped a JPA 2.0 preview bundle versioned as 1.99, but without a jpa attribute specified.  By specifying jpa="2.0" you can ensure that the preview bundle is not used even when you specify the OSGi Enterprise spec JPA version of 1.1.0.
+
 
+
=== Examples ===
+
 
+
Examples that illustrate the use of EclipseLink in OSGi applications
+
 
+
* [[EclipseLink/Examples/OSGi/Developing with EclipseLink OSGi in PDE|Developing with EclipseLink OSGi in PDE]]
+
* [[EclipseLink/Examples/OSGi/Equinox Byte Code Weaving|Equinox Byte Code Weaving]]
+
* [[EclipseLink/Examples/OSGi/LazyLoadingRCP|Using EclipseLink JPA in an RCP application]]
+
 
+
==Eclipse Rich Client Platform (RCP)==
+
Examples that show how to use EclipseLink in RCP Applications.
+
 
+
* [[EclipseLink/Examples/OSGi/LazyLoadingRCP|Lazy Loading RCP Tree Example]]
+
 
+
[[Category:EclipseLink/Example|OSGi Examples]]
+
 
+
==Eclipse Rich Client Platform (RCP)==
+
Examples that show how to use EclipseLink in RCP Applications.
+
 
+
* [[EclipseLink/Examples/OSGi/LazyLoadingRCP|Lazy Loading RCP Tree Example]]
+
 
+
[[Category:EclipseLink/Example|OSGi Examples]]
+

Latest revision as of 13:46, 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