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/Examples/JPA"

m (Basic)
m (Basic)
Line 12: Line 12:
 
* [[EclipseLink/Examples/JPA/OutsideContainer | How to use outside of the container]]
 
* [[EclipseLink/Examples/JPA/OutsideContainer | How to use outside of the container]]
 
* [[EclipseLink/Examples/JPA/Locking | How to use locking]]
 
* [[EclipseLink/Examples/JPA/Locking | How to use locking]]
 +
* [[EclipseLink/Examples/JPA/Caching | How to use caching]]
  
 
=== Diagnostics ===
 
=== Diagnostics ===

Revision as of 11:09, 13 March 2009


The following examples are provided to assist developers with their adoption and usage of EclipseLink's JPA and native ORM functionality. See Developing JPA Projects in the EclipseLink User's Guide for details.

EclipseLink JPA Examples/Tutorials

Basic

Diagnostics

Mapping

Querying

Java SE Examples

Rich Client Platform (RCP)

Spring JPA

Using Native ORM through JPA

Using Native EclipseLink ORM API

Migration

Tutorials

JPA Web Application Tutorials

Container Version JEE Spec Source

DDL-gen

Issues
Oracle WebLogic Server 10.3.3.1 / 11g 5

EAREJBWAR

- See application-scoped datasource workaround.

- TODO 20081011: Verify weaving works in container and application managed EM modes (the current data model only uses @OneToMany and @ManyToMany)

Oracle OC4J 10.1.3.5 5

EAREJBWAR

- Updated for version 10.1.3.5 or 10.1.4
GlassFish V2.1 5 - - Requires GlassFish V2.1 build 32

- Current Production Release

- migrating from TopLink Essentials to EclipseLink

SUN Application Server 9.1 5 - - See GlassFish V2 which is included in Sun AS 9
GlassFish V3 6 - - Use V3 prelude - not TP2

- Use the 1.0.9+ snapshot plugin (with fixed library references) against a prelude server

JBoss 4.2.2 5 - - Dynamic weaving is disabled due to (JIRA-572) - upcoming 5.0CR2 release (Oct 2008) will be fully JEE5

- see static weaving workaround using the JBoss JSFEJB3 example

JBoss Seam - 5 - - in response to request for EclipseLink JPA support in JBoss SEAM
Spring 2.5.5 5 - - Under Construction TBD: use the Derby database platform
Spring 3.0 6 - - Arriving Jan 2009
IBM WebSphere 6.1.0.0 1.4/5 - - Supports JPA1/EJB3 with optional feature pack on Java SE 1.5

- The WAS 6.1 Eclipse WTP Server plugin (ehr 160221) should be in the next release of Ganymede 3.4 in Dec08 - or use manual or python deployment

- example incomplete

IBM WebSphere 7.0.0.1 5 - - There is no WAS 7.0 Eclipse WTP Server plugin yet - you can attach the Eclipse IDE to a WebSphere 7 server in debug mode on port 7781

- In progress as of 20090115

IBM WebSphere CE 2.1.0.1 5 - - WebSphere CE 2.1 is only certified on Java SE 1.5 (SUN JRE 1.6 runtime support is available)
Apache Geronimo 2.0.2 5 - - see WebSphere CE which wraps Geronimo, Derby and OpenJPA
Apache Tomcat 6.0.18 5 (w/o EJB) - - 2.5 Servlet container will support application managed JPA entities using RESOURCE_LOCAL or JTA transactions.

- JTA datasource (without JTATransactionController) available when running as Tomcat service

- SessionCustomizer is required for JTA.

- Only static weaving (instrumentation) is available.

- No @EJB or @PersistenceContext injection is available.

EclipseLink JPA Examples Matrix by Web Framework

  • The following grid cross-references the above JPA JEE Tutorials by Application server, Database and type of presentation framework - to answer the question "How to run EclipseLink JPA on an application server against a particular database"?
Database --> Oracle MySQL Derby JavaDB HSQL DB2 Ex
WebLogic Servlet
OC4J Servlet
Glassfish Servlet
Sun AS Servlet
JBoss Servlet JSF
WebSphere Servlet
Geronimo
Tomcat Servlet

Under Construction

Catnicon.gifThis section contains Examples and tutorials that are not yet complete.


Querying

Java SE Examples

Database Platform Extensions

  • Oracle: Spatial, VPD/OLS, TIMESTAMP, XDB

Advanced

Application Server specific

JBoss Seam

Integrating EclipseLink JPA with an IDE

The following tutorials describe details on running EclipseLink JPA on a specific Java IDE.

  • Eclipse
  • MyEclipse
  • WebLogic Workshop
  • IBM WebSphere Studio
  • IBM Rational Application Developer 7.5
  • Oracle JDeveloper 11.1.1
  • IntelliJ IDEA
  • SUN Java Studio (NetBeans)
  • Borland JBuilder

Integrating EclipseLink JPA with a Database Platform

The following tutorials describe details on running EclipseLink JPA on a specific database platform.

Back to the top