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"

(JPA and Native ORM Examples)
(added BV in JAXB)
(69 intermediate revisions by 11 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
This page will serve as an index into examples developers can easily leverage to accomplish common tasks with EclipseLink. Be sure to review the ''[[EclipseLink/UserGuide|EclispeLink User's Guide]]'' for complete information on using EclipseLink.
+
This page will serve as an index into examples developers can easily leverage to accomplish common tasks with EclipseLink. Be sure to review the '''[http://www.eclipse.org/eclipselink/documentation/ EclipseLink Documentation Center]''' for complete information on using EclipseLink.
  
 +
Source code to several of these examples, and to other examples can be found in EclipseLink's examples GIT repository, [http://git.eclipse.org/c/eclipselink/examples.git/  here] and SVN repository, [http://dev.eclipse.org/svnroot/rt/org.eclipse.persistence/trunk/examples/ here], or accessed through [[EclipseLink/Source|SVN]], or [http://www.eclipse.org/eclipselink/downloads/index.php downloads].
  
== JPA and Native ORM Examples ==
+
== Foundation Examples ==
 +
* [[EclipseLink/Examples/Foundation/Logging |  How do I integrate with a third party logging framework? ]]
 +
* [[EclipseLink/Examples/Foundation/DynamicPersistence | How do I map Persistence Entities without Java classes?]]
 +
* [[EclipseLink/Examples/Foundation | <b>More Foundation Examples...</b>]]
 +
 
 +
== JPA (Object-Relational) Examples ==
  
 
* [[EclipseLink/Examples/JPA/JPAConfigure | How to Configure JPA]]
 
* [[EclipseLink/Examples/JPA/JPAConfigure | How to Configure JPA]]
 
* [[EclipseLink/Examples/JPA/EMAPI | Using the EntityManager API]]
 
* [[EclipseLink/Examples/JPA/EMAPI | Using the EntityManager API]]
* [[EclipseLink/Examples/Migration | How to migrate to EclipseLink JPA]]
+
* [[EclipseLink/Examples/JPA/RCP | Using EclipseLink JPA in RCP]]
* [[EclipseLink/Examples/JPA | <b>More JPA and Native ORM Examples...</b>]]
+
* [[EclipseLink/Examples/JPA/Migration | How to migrate to EclipseLink JPA from other persistence solutions]]
 +
* [[EclipseLink/Examples/SDO/JPA | Accessing Relational Data as SDO DataObjects using JPA]]
 +
* [[EclipseLink/Examples/JPA#JPA 2.0|JPA 2.0 Examples]]
 +
* [[EclipseLink/Release/2.5/JPA21|JPA 2.1 Examples]]
 +
* [[EclipseLink/Examples/JPA | <b>More JPA Examples...</b>]]
  
== MOXy Examples ==
+
== NoSQL Examples ==
  
* [[EclipseLink/Examples/MOXy/JaxbClassGen | Generating Java Source from an XML Schema]]
+
* [[EclipseLink/Examples/JPA/NoSQL | Accessing MongoDB through JPA]]
* [[EclipseLink/Examples/MOXy/JaxbProperties | Specifying the EclipseLink JAXB Runtime]]
+
* [[EclipseLink/Examples/PolyglotPersistence | Polyglot Persistence (Relational and NoSQL)]]
* [[EclipseLink/Examples/MOXy | <b>More MOXy Examples...</b>]]
+
  
 +
== MOXy (Object-XML) Examples ==
 +
 +
* [[EclipseLink/Examples/MOXy/GettingStarted | Getting Started]]
 +
* [[EclipseLink/Examples/MOXy/JAXB | Using EclipseLink JAXB]]
 +
* [[EclipseLink/Examples/MOXy/BVinJAXB | Using Bean Validation in JAXB]]
 +
* [[EclipseLink/Examples/MOXy/MeetInTheMiddle | Meet in the Middle Mapping]]
 +
* [[EclipseLink/Examples/MOXy/EclipseLink-OXM.XML | Using EclipseLink MOXy's XML Mapping (eclipselink-oxm.xml)]]
 +
* [[EclipseLink/Examples/MOXy/Dynamic | Dynamic JAXB]]
 +
* [[EclipseLink/Examples/MOXy/JPA | Map JPA entities to XML]]
 +
* [[EclipseLink/Examples/SDO/JAXB | Converting POJOs to/from SDO DataObjects using the POJO/SDO Bridge (via JAXB)]]
 +
* [[EclipseLink/Examples/MOXy/NativeOxmJaxbContext | Creating a Native OXM aware JAXBContext]]
 +
* [[EclipseLink/Examples/MOXy | <b>More MOXy Examples...</b>]]
  
 
== SDO Examples ==
 
== SDO Examples ==
  
* [[EclipseLink/Examples/SDO/SdoClassGen | Generating Java Source from an XML Schema]]
+
* [[EclipseLink/Examples/SDO/MetadataXMLSchema | Convert an XML Schema to SDO Metadata]]
* [[EclipseLink/Examples/SDO/SdoStatic | Using Static Data Objects to Manipulate XML]]
+
* [[EclipseLink/Examples/SDO/DynamicAPI | Using Dynamic DataObjects]]
 +
* [[EclipseLink/Examples/SDO/DynamicAPIXML | Using Dynamic DataObjects to Manipulate XML]]
 +
* [[EclipseLink/Examples/SDO/Compiler | Running the SDO Compiler - Generating Type Safe DataObjects]]
 +
* [[EclipseLink/Examples/SDO/StaticAPI | Using Type Safe DataObjects to Manipulate XML]]
 +
* [[EclipseLink/Examples/SDO/JAXB | Converting POJOs to/from SDO DataObjects using the POJO/SDO Bridge]]
 +
* [[EclipseLink/Examples/SDO/JPA | Accessing Relational Data as SDO DataObjects using JPA]]
 
* [[EclipseLink/Examples/SDO | <b>More SDO Examples...</b>]]
 
* [[EclipseLink/Examples/SDO | <b>More SDO Examples...</b>]]
  
[[Category:EclipseLink]]
+
== DBWS Examples ==
 +
 
 +
* [[EclipseLink/Examples/DBWS/DBWSOverview| EclipseLink DBWS Overview]]
 +
* [[EclipseLink/Examples/DBWS/DBWSBasicTable| Creating a EclipseLink DBWS service based on Database Table]]
 +
* [[EclipseLink/Examples/DBWS/DBWSBasicStoredProcedure| Creating a EclipseLink DBWS service based on a Stored Procedure]]
 +
* [[EclipseLink/Examples/DBWS/DBWSBasicSQL| Creating a EclipseLink DBWS service based on a result set from custom SQL <code>SELECT</code> statements]]
 +
* [[EclipseLink/Examples/DBWS | <b>More DBWS Examples...</b>]]
 +
 
 +
== OSGi Examples ==
 +
EclipseLink OSGi support is provided by the Eclipse Gemini JPA project.  See the [[Gemini/JPA/Documentation|Gemini documentation]] for examples.
 +
 
 +
== Case Studies ==
 +
* [[EclipseLink/Examples/Distributed|Distributed JPA Enterprise Application Case Study]]
 +
 
 +
[[Category:EclipseLink/Example|Examples Home]]

Revision as of 08:11, 16 April 2015

This page will serve as an index into examples developers can easily leverage to accomplish common tasks with EclipseLink. Be sure to review the EclipseLink Documentation Center for complete information on using EclipseLink.

Source code to several of these examples, and to other examples can be found in EclipseLink's examples GIT repository, here and SVN repository, here, or accessed through SVN, or downloads.

Foundation Examples

JPA (Object-Relational) Examples

NoSQL Examples

MOXy (Object-XML) Examples

SDO Examples

DBWS Examples

OSGi Examples

EclipseLink OSGi support is provided by the Eclipse Gemini JPA project. See the Gemini documentation for examples.

Case Studies

Back to the top