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 "Introduction to EclipseLink Development Tools (ELUG)"

m
m
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
[[Image:Elug draft icon.png]] '''For the latest EclipseLink documentation, please see http://www.eclipse.org/eclipselink/documentation/ '''
 +
 +
----
 +
 
<div style="float:right;border:1px solid #000000;padding:5px">__TOC__
 
<div style="float:right;border:1px solid #000000;padding:5px">__TOC__
 
[[Special:Whatlinkshere/Introduction to EclipseLink Development Tools (ELUG)|Related Topics]]</div>
 
[[Special:Whatlinkshere/Introduction to EclipseLink Development Tools (ELUG)|Related Topics]]</div>
The EclipseLink runtime provides Java or Java EE applications with access to persistent entities stored in a data source. In addition to run-time capabilities, the EclispeLink Foundation Library includes the EclipseLink Application Programming Interface (API). This API enables applications to access EclipseLink run-time features.
+
The EclipseLink runtime provides Java or Java EE applications with access to persistent entities stored in a data source. In addition to run-time capabilities, the EclipseLink Foundation Library includes the EclipseLink Application Programming Interface (API). This API enables applications to access EclipseLink run-time features.
  
 
EclipseLink includes additional development tools that simplify application development. These tools capture mapping and run-time configuration information in metadata files that EclipseLink passes to the application at run time.
 
EclipseLink includes additional development tools that simplify application development. These tools capture mapping and run-time configuration information in metadata files that EclipseLink passes to the application at run time.
 +
 +
The EclipseLink Workbench development tool is primarily for developing when using the native EclipseLink API, MOXy, or EIS.  When using JPA, other development tools such as Eclipse Dali, or Oracle JDeveloper can be used.
  
 
EclipseLink metadata is the link between the two (see [[Introduction to EclipseLink Application Development (ELUG)#Working with EclipseLink Metadata|Working with EclipseLink Metadata]]).
 
EclipseLink metadata is the link between the two (see [[Introduction to EclipseLink Application Development (ELUG)#Working with EclipseLink Metadata|Working with EclipseLink Metadata]]).
Line 31: Line 37:
  
 
==EclipseLink Run-Time Environment==
 
==EclipseLink Run-Time Environment==
The EclispeLink Foundation Library provides the EclipseLink run-time component. Access the run-time component either directly through the EclipseLink API or indirectly through a Java EE container when using entity beans with container-managed persistence. The run-time environment is not a separate or external process–it is embedded within the application. Application calls invoke EclipseLink to provide persistence behavior. This function allows for transactional and thread-safe access to shared database connections and cached objects.
+
The EclipseLink Foundation Library provides the EclipseLink run-time component. Access the run-time component either directly through the EclipseLink API or indirectly through a Java EE container when using entity beans with container-managed persistence. The run-time environment is not a separate or external process–it is embedded within the application. Application calls invoke EclipseLink to provide persistence behavior. This function allows for transactional and thread-safe access to shared database connections and cached objects.
  
 
In addition to Java EE environments, EclipseLink fully supports non-Java EE environments as well. See [[Introduction to EclipseLink Application Development (ELUG)#Selecting an Architecture with EclipseLink|Selecting an Architecture with EclipseLink]] for more information.
 
In addition to Java EE environments, EclipseLink fully supports non-Java EE environments as well. See [[Introduction to EclipseLink Application Development (ELUG)#Selecting an Architecture with EclipseLink|Selecting an Architecture with EclipseLink]] for more information.
Line 41: Line 47:
  
 
[[Category: EclipseLink User's Guide]]
 
[[Category: EclipseLink User's Guide]]
[[Category: Draft]]
+
[[Category: Release 1]]
 
[[Category: Concept]]
 
[[Category: Concept]]

Latest revision as of 11:20, 18 July 2012

Elug draft icon.png For the latest EclipseLink documentation, please see http://www.eclipse.org/eclipselink/documentation/


The EclipseLink runtime provides Java or Java EE applications with access to persistent entities stored in a data source. In addition to run-time capabilities, the EclipseLink Foundation Library includes the EclipseLink Application Programming Interface (API). This API enables applications to access EclipseLink run-time features.

EclipseLink includes additional development tools that simplify application development. These tools capture mapping and run-time configuration information in metadata files that EclipseLink passes to the application at run time.

The EclipseLink Workbench development tool is primarily for developing when using the native EclipseLink API, MOXy, or EIS. When using JPA, other development tools such as Eclipse Dali, or Oracle JDeveloper can be used.

EclipseLink metadata is the link between the two (see Working with EclipseLink Metadata).

The following figure illustrates how these elements interact with the data source.

EclipseLink Components in Development Lifecycle

EclipseLink Components in Development Lifecycle


Development Environment

To create an EclipseLink application, use the Workbench to map objects to data sources using relational and nonrelational models. Capture the resulting mappings and additional run-time configurations in the EclipseLink project file (project.xml) and build a session configuration file (sessions.xml). These files together represent your entire EclipseLink project, as shown in the following figure.

During development, you can use the EclipseLink API to define query and transaction logic. When you use entity beans, there is generally little or no direct use of the EclipseLink API and there is no session or sessions.xml file.

Workbench in Development Environment

Workbench in Development Environment

Workbench can import compiled entity classes (Java objects or EJB entity beans), as well as relational or nonrelational schemas through a JDBC driver (configured by you). Because EclipseLink imports the object and relational models for mapping, you can develop the two models relatively independently from the mapping phase of a project development.


EclipseLink Run-Time Environment

The EclipseLink Foundation Library provides the EclipseLink run-time component. Access the run-time component either directly through the EclipseLink API or indirectly through a Java EE container when using entity beans with container-managed persistence. The run-time environment is not a separate or external process–it is embedded within the application. Application calls invoke EclipseLink to provide persistence behavior. This function allows for transactional and thread-safe access to shared database connections and cached objects.

In addition to Java EE environments, EclipseLink fully supports non-Java EE environments as well. See Selecting an Architecture with EclipseLink for more information.



Copyright Statement

Back to the top