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/JPA/Basic JPA Development"

m (Basic JPA Development)
m (Basic JPA Development)
Line 6: Line 6:
 
=Basic JPA Development=
 
=Basic JPA Development=
  
To develop a JPA project, you must configure the following items:
+
To develop a JPA project, you must be aware of the following items:
 
*[[EclipseLink/UserGuide/JPA/Basic JPA Development/Configuration|JPA Configuration]]
 
*[[EclipseLink/UserGuide/JPA/Basic JPA Development/Configuration|JPA Configuration]]
 
*[[EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping|Mappings]]
 
*[[EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping|Mappings]]

Revision as of 11:21, 16 June 2010

Basic JPA Development

To develop a JPA project, you must be aware of the following items:

Project development is a 3-step process.

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-logo.gif
Version: DRAFT
Other versions...

Back to the top