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/JPARS/Simple"

Line 24: Line 24:
 
## Database connectivity
 
## Database connectivity
 
## GlassFish Configuration
 
## GlassFish Configuration
 +
## Verify config
 +
## Populate database
 
# Running the Example
 
# Running the Example
 +
## Deploy Web Application
 +
## View metadata
 +
## Query entities
 +
## Create entity
 +
## Delete entity
 +
## Update entity
  
 
== Installation ==
 
== Installation ==

Revision as of 10:17, 23 August 2012

Simple JPA-RS Example

This example is intended to be the "Hello World" example of using JPA-RS with a single entity persistence unit in a web application.

Environment

The following are the minimal requirements for this example.

  • EclipseLink 2.4.0
  • Eclipse Java EE IDE - Juno Release
  • REST client

Overview

The following steps will be performed in setting up and running this example in your own environment

  1. Installation
    1. Check example out of GIT
  2. Configuration
    1. Database connectivity
    2. GlassFish Configuration
    3. Verify config
    4. Populate database
  3. Running the Example
    1. Deploy Web Application
    2. View metadata
    3. Query entities
    4. Create entity
    5. Delete entity
    6. Update entity

Installation

Configuration

Running the Example

Back to the top