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"

(Overview)
m (Installation and Configuration)
Line 46: Line 46:
 
<br>  
 
<br>  
  
3. Run &nbsp;'''createDDL.jdbc''' script under&nbsp;examples\student\student.model, populate database tables required for the student example.
+
3. Lauch eclipse. Select File-&gt;Import-&gt;Maven-&gt;Existing Maven Projects, hit next and point Root Directory to student folder. Hit finish.  
 
+
4. Lauch eclipse. Select File-&gt;Import-&gt;Maven-&gt;Existing Maven Projects, hit next and point Root Directory to student folder. Hit finish.  
+
  
 
<br>  
 
<br>  
Line 56: Line 54:
 
<br>  
 
<br>  
  
5. Build the student project.  
+
4. Build the student project.  
  
6.Configure a server. Click "new server wizard" link on the Servers tab.  
+
5.Configure a server. Click "new server wizard" link on the Servers tab.  
  
 
<br>  
 
<br>  
Line 66: Line 64:
 
<br>  
 
<br>  
  
7. Select GlassFish 3.1.2  
+
6. Select GlassFish 3.1.2  
  
 
<br>  
 
<br>  
Line 74: Line 72:
 
<br>  
 
<br>  
  
8. Enter domain directory, admin name and password based on your installation and hit Finish.  
+
7. Enter domain directory, admin name and password based on your installation and hit Finish.  
  
 
<br>  
 
<br>  
Line 82: Line 80:
 
<br>  
 
<br>  
  
9. Deploy student.web. Right click on the Glassfish (on Servers tab), select "student.web" in available resources list. Hit Add and Finish.  
+
8. Deploy student.web. Right click on the Glassfish (on Servers tab), select "student.web" in available resources list. Hit Add and Finish.  
  
 
<br>  
 
<br>  

Revision as of 11:35, 13 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
    • Check out student example from GIT
    • Database connectivity
    • GlassFish - Datasource configuration
    • Verify config
    • Deploy web application
  2. Running the Example
    • View metadata
    • Create entity
    • Update entity
    • Query entity
    • Delete entity

Installation and Configuration

1. Clone "examples" from git. The "student" example is stored under student folder.

   git clone git://git.eclipse.org/gitroot/eclipselink/examples.git

2. Configure datasource. Create an XA Datasource connection pool called "JPARSStudentDS" and define a new JDBC Resource using this connection pool. You can use any of the databases supported by the eclipselink.

Configuring JDBC Connection Pool

JDBC Resource


3. Lauch eclipse. Select File->Import->Maven->Existing Maven Projects, hit next and point Root Directory to student folder. Hit finish.


2013-03-07 12 57 52-Java EE - Eclipse Platform.png


4. Build the student project.

5.Configure a server. Click "new server wizard" link on the Servers tab.


Server.png


6. Select GlassFish 3.1.2


Gf.png


7. Enter domain directory, admin name and password based on your installation and hit Finish.


Example domain.png


8. Deploy student.web. Right click on the Glassfish (on Servers tab), select "student.web" in available resources list. Hit Add and Finish.


St deploy.png


Now, you are ready to run the student example. 

Running the Example

Metadata 2.png


      {
          "id": 65,
          "name": "Jane Smith",
          "courses": [
               {
                   "id":101,
                   "name": "math"
               }
          ]
      }


Post.png


Query.png


Delete.png

Back to the top