Skip to main content

Notice: This Wiki is now read only and edits are no longer 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 (Simple JPA-RS Example)
Line 1: Line 1:
== Simple JPA-RS Example ==
+
== Simple JPA-RS Example - student ==
  
 
<div style="float:right;width:300px"><div align="center" style="background:#ffffff;width:275px">
 
<div style="float:right;width:300px"><div align="center" style="background:#ffffff;width:275px">
Line 5: Line 5:
 
</div> </div>
 
</div> </div>
  
This example is intended to be the "Hello World" example of using [[EclipseLink/Release/2.4.0/JPA-RS | JPA-RS]] with a single entity persistence unit in a web application.
+
The "student" example is intended to be the "Hello World" example of using [[EclipseLink/Release/2.4.0/JPA-RS | JPA-RS]] with a single entity persistence unit in a web application.
  
 
=== Environment ===
 
=== Environment ===
Line 35: Line 35:
 
## Update entity
 
## Update entity
  
<span style="display: none;" id="1362671130064S">&nbsp;</span>  
+
<span style="display: none;" id="1362671130064S">&nbsp;</span>
  
 
== Installation  ==
 
== Installation  ==

Revision as of 12:00, 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.

  • EclipseLink 2.4.2
  • Eclipse Java EE IDE - Juno Release
  • Git client to checkout eclipselink "examples" git repository
  • Glassfish 3.1.2
  • REST client (Chrome Postman REST Client is used in this example, but you can use your favorite REST Client)

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