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"

m
m
Line 17: Line 17:
 
* REST client ([https://chrome.google.com/webstore/detail/postman-rest-client/fdmmgilgnpjigdojojpjoooidkmcomcm?hl=en Chrome Postman REST Client] is used in this example, but you can use your favorite REST Client)
 
* REST client ([https://chrome.google.com/webstore/detail/postman-rest-client/fdmmgilgnpjigdojojpjoooidkmcomcm?hl=en Chrome Postman REST Client] is used in this example, but you can use your favorite REST Client)
  
=== Overview ===
+
=== Overview ===
  
The following steps will be performed in setting up and running this example in your own environment
+
The following steps will be performed in setting up and running this example in your own environment  
  
# Installation & Configuration
+
#Installation & Configuration  
## Check out student example from GIT
+
##Check out student example from GIT  
## Database connectivity
+
##Database connectivity  
## GlassFish Configuration
+
##GlassFish - Datasource configuration
## Verify config
+
##Verify config  
## Populate database
+
##Populate database  
# Running the Example
+
#Running the Example  
## Deploy Web Application
+
##Deploy Web Application  
## View metadata
+
##View metadata  
## Query entities
+
##Query entities  
## Create entity
+
##Create entity  
## Delete entity
+
##Delete entity  
## Update entity
+
##Update entity
  
 
<span style="display: none;" id="1362671130064S">&nbsp;</span>
 
<span style="display: none;" id="1362671130064S">&nbsp;</span>

Revision as of 13:40, 7 March 2013

Simple Example - student

The "student" example is intended to provide a simple 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 out student example from GIT
    2. Database connectivity
    3. GlassFish - Datasource 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

  • Clone "examples" from git. The "student" example is stored under student folder.
   git clone git://git.eclipse.org/gitroot/eclipselink/examples.git
  • Configure datasource. Create a JDBC Connection Pool called "jdbc/JPARSStudentDS" and define a new JDBC Resources using this connection pool.


Configuring JDBC Connection Pool\



JDBC Resource

Configuration

Running the Example

Back to the top