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 "Category:JPA"

m (xlink to native orm)
m (quick 1, 2, 3, steps)
Line 1: Line 1:
 +
__NOTOC__
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 5: Line 6:
 
|}
 
|}
  
 +
 +
 +
== Developing Applications using EclipseLink JPA ==
 +
<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>
  
  
 
[[Category:Architecture]]
 
[[Category:Architecture]]

Revision as of 10:58, 21 February 2008

Eclipselink jpa.png This page lists all sections in the EclipseLink User's Guide for JPA (Java Persistence API) projects. You can also use EclipseLink's Native ORM support to extend JPA.


Developing Applications using EclipseLink JPA

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

Back to the top