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/UserGuide/Developing JPA Projects (ELUG)"

m (Developing JPA Projects)
m (Developing JPA Projects)
Line 1: Line 1:
=Developing JPA Projects=
+
__NOTOC__
 +
<table width="800" cellpadding="5">
 +
<tr valign="top">
 +
<td>
 +
<div style="padding:5px;border:1px solid #000000;width:250px;background:#cff8d9">
 +
==Step 1==
 +
Define your persistence units in <tt>persistence.xml</tt>.
 +
</div>
 +
*[[Introduction_to_Java_Persistence_API_(ELUG)#persistence.xml_File|About the persistence.xml file]]
 +
*[[Packaging_and_Deploying_EclipseLink_JPA_Applications_(ELUG)#How_to_Specify_the_Persistence_Unit_Name|Specifying the persistence unit]]
 +
</td>
 +
<td>
 +
<div style="padding:5px;border:1px solid #000000;width:250px;background:#cff8d9">
 +
==Step 2==
 +
Annotate classes with @Entity, @Embeddable, and @MappedSuperClass and/or define classes in your mapping file (orm.xml).
 +
</div>
 +
*[[Introduction_to_EclipseLink_JPA_%28ELUG%29#Configuring_an_Entity|Configuring an entity]]
 +
*[[Using_EclipseLink_JPA_Extensions_%28ELUG%29|EclipseLink extensions]]
 +
</td>
 +
<td>
 +
<div style="padding:5px;border:1px solid #000000;width:250px;background:#cff8d9">
 +
==Step 3==
 +
Configure your application with:
 +
* javax.persistence.transactionType
 +
* javax.persistence.jtaDataSource
 +
* javax.persistence.nonJtaDataSource
 +
</div>
 +
* [[Developing_Applications_Using_EclipseLink_JPA_%28ELUG%29|Application development]]
 +
*[[Packaging_and_Deploying_EclipseLink_JPA_Applications_%28ELUG%29|Packaging and deployment]]
 +
</td>
 +
</tr>
 +
</table>
 +
 
 +
 
 +
 
 +
==EclipseLink User's Guide==
 
The following sections describe the Java Persistence API, including the EclipseLink implementation:
 
The following sections describe the Java Persistence API, including the EclipseLink implementation:
  

Revision as of 11:02, 18 January 2008

Step 1

Define your persistence units in persistence.xml.

Step 2

Annotate classes with @Entity, @Embeddable, and @MappedSuperClass and/or define classes in your mapping file (orm.xml).

Step 3

Configure your application with:

  • javax.persistence.transactionType
  • javax.persistence.jtaDataSource
  • javax.persistence.nonJtaDataSource


EclipseLink User's Guide

The following sections describe the Java Persistence API, including the EclipseLink implementation:


Related Topics


Copyright Statement

Back to the top