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"

(Environment)
m (Installation)
Line 41: Line 41:
 
First checkout the examples from git:  
 
First checkout the examples from git:  
  
*    git clone http://git.eclipse.org/gitroot/eclipselink/examples.git
+
* git clone git://git.eclipse.org/gitroot/eclipselink/examples.git
  
 
The example explained in this tutorial is stored under [http://git.eclipse.org/c/eclipselink/examples.git/tree/student student] folder.
 
The example explained in this tutorial is stored under [http://git.eclipse.org/c/eclipselink/examples.git/tree/student student] folder.

Revision as of 12:48, 7 March 2013

Simple JPA-RS Example - student

The "student" 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.

Overview

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

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

Installation

First checkout the examples from git:

The example explained in this tutorial is stored under student folder.

Configuration

Running the Example

Back to the top