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

EclipseLink/Examples/REST/GettingStarted

< EclipseLink‎ | Examples‎ | REST
Revision as of 14:18, 17 August 2010 by Blaise.doughan.oracle.com (Talk | contribs) (New page: ==Overview== In this example we will create a standards based REST service using EclipseLink JPA & JAXB. * '''Database Model'''...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Overview

In this example we will create a standards based REST service using EclipseLink JPA & JAXB.

  • Database Model - This is the database model that we will expose as a REST service.
  • Entity Model - We will interact with our database using JPA entities.
  • XML Binding - JAXB/MOXy will be used to apply an XML representation to our JPA entities.
  • REST Service - An EJB session bean will be used to implment the JAX-RS service.
  • REST Client - We will create a client to interact with our REST service.

Back to the top