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/FAQ/General"

(What is EclipseLink?)
(How is EclipseLink Licensed?)
 
(65 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
== What is EclipseLink? ==
 
== What is EclipseLink? ==
  
EclipseLink is a Java persistence solution and data conversion service.
+
Eclipse Persistence Services Project (EclipseLink) is a comprehensive persistence framework delivering a set of persistence services based around leading standards with advanced extensions. Consumers can use EclipseLink within Java EE, SE, and OSGi/Equinox environments.  
It provides:
+
* A JPA implementation (Java Persistence API) for accessing relational databases (and EIS data sources).
+
** And a POJO API which the JPA implementation is based on.
+
* A JAXB implementation (JAva XML Binding) for converting Java objects to and from XML documents.
+
** And a POJO API which the JAXB implementation is based on.
+
* An SDO implementation (Service Data Objects).
+
* A database web services adapter.
+
  
The original source contribution for EclipseLink came from [http://www.oracle.com/technology/products/ias/toplink/index.html Oracle Corporation's TopLink product].
+
The original source contribution for EclipseLink came from [http://www.oracle.com/technetwork/middleware/toplink/overview/index.html Oracle Corporation's TopLink product].
 +
 
 +
See "Overview of EclipseLink" in ''[http://www.eclipse.org/eclipselink/documentation/ Understanding EclipseLink (Concepts Guide)]'' for more information.
 +
 
 +
== How is EclipseLink Licensed? ==
 +
 
 +
The EclipseLink project is dual licensed under the [http://www.eclipse.org/legal/epl-v10.html Eclipse Public License] and the [http://www.eclipse.org/org/documents/edl-v10.php Eclipse Distribution Licensed] (BSD).
 +
 
 +
'''EclipseLink Source Header:'''
 +
<source lang="java">
 +
/**
 +
* ****************************************************************************
 +
* Copyright (c) 2015 Oracle and/or its affiliates. All rights reserved.
 +
* This program and the accompanying materials are made available under the
 +
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
 +
* which accompanies this distribution.
 +
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 +
* and the Eclipse Distribution License is available at
 +
* http://www.eclipse.org/org/documents/edl-v10.php.
 +
* *****************************************************
 +
</source>
 +
 
 +
== What is the relationship between EclipseLink and the Oracle TopLink product? ==
 +
 
 +
EclipseLink was initiated based on the contribution of Oracle TopLink. The full persistence capabilities Oracle TopLink was contributed.
 +
 
 +
Going forward Oracle TopLink will include EclipseLink to deliver its core persistence functionality.
 +
 
 +
== What are the components of EclipseLink? ==
 +
 
 +
The EclipseLink project is broken down into several [[EclipseLink/Components | components]] based on persistence services provided as well an a structure to organize development and produce functional OSGi/Equinox bundles.
 +
 
 +
* [[EclipseLink/Components#Foundation | Foundation]]
 +
* [[EclipseLink/Components#JPA| JPA]]
 +
* [[EclipseLink/Components#MOXy| MOXy]]
 +
* [[EclipseLink/Components#SDO| SDO]]
 +
* [[EclipseLink/Components#DBWS| DBWS]]
 +
* [[EclipseLink/Components#Extensions| Extensions]]
 +
* [[EclipseLink/Components#NoSQL| NoSQL]]
 +
* [[EclipseLink/Components#Utils| Utils]]
 +
* [[EclipseLink/Components#Examples | Examples]]
 +
* [[EclipseLink/Components#Documentation | Documentation]]
 +
 
 +
== Where can I download EclipseLink? ==
 +
At present EclipseLink can only be downloaded directly from the Eclipse project's website:
 +
 
 +
http://www.eclipse.org/eclipselink/downloads/index.php
 +
 
 +
== How do I get started using EclipseLink? ==
 +
 
 +
# [http://www.eclipse.org/eclipselink/downloads/ Download EclipseLink]
 +
# Review the [http://www.eclipse.org/eclipselink/documentation/ EclipseLink Documentation Center]
 +
# [[EclipseLink/Examples | Try the EclipseLink Examples and Tutorials]]
 +
 
 +
== Can I use EclipseLink with Maven? ==
 +
 
 +
Yes, EclipseLink published a Maven repository so that developers can easily integrate the project's builds/milestones/releases into their Maven build process.  Full instructions can be found on the [[EclipseLink/Maven | EclipseLink/Maven]] page.
 +
 
 +
[[Category:EclipseLink FAQ|General]]

Latest revision as of 20:06, 19 March 2015

What is EclipseLink?

Eclipse Persistence Services Project (EclipseLink) is a comprehensive persistence framework delivering a set of persistence services based around leading standards with advanced extensions. Consumers can use EclipseLink within Java EE, SE, and OSGi/Equinox environments.

The original source contribution for EclipseLink came from Oracle Corporation's TopLink product.

See "Overview of EclipseLink" in Understanding EclipseLink (Concepts Guide) for more information.

How is EclipseLink Licensed?

The EclipseLink project is dual licensed under the Eclipse Public License and the Eclipse Distribution Licensed (BSD).

EclipseLink Source Header:

/**
 * ****************************************************************************
 * Copyright (c) 2015 Oracle and/or its affiliates. All rights reserved.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
 * which accompanies this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 * *****************************************************

What is the relationship between EclipseLink and the Oracle TopLink product?

EclipseLink was initiated based on the contribution of Oracle TopLink. The full persistence capabilities Oracle TopLink was contributed.

Going forward Oracle TopLink will include EclipseLink to deliver its core persistence functionality.

What are the components of EclipseLink?

The EclipseLink project is broken down into several components based on persistence services provided as well an a structure to organize development and produce functional OSGi/Equinox bundles.

Where can I download EclipseLink?

At present EclipseLink can only be downloaded directly from the Eclipse project's website:

http://www.eclipse.org/eclipselink/downloads/index.php

How do I get started using EclipseLink?

  1. Download EclipseLink
  2. Review the EclipseLink Documentation Center
  3. Try the EclipseLink Examples and Tutorials

Can I use EclipseLink with Maven?

Yes, EclipseLink published a Maven repository so that developers can easily integrate the project's builds/milestones/releases into their Maven build process. Full instructions can be found on the EclipseLink/Maven page.

Back to the top