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 1: Line 1:
== Simple Example - student ==
+
== Simple 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">
 
__TOC__  
 
__TOC__  
</div> </div>
+
</div> </div>  
 +
The "student" example is intended to provide a simple 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 provide a simple example of using [[EclipseLink/Release/2.4.0/JPA-RS | JPA-RS]] with a single entity persistence unit in a web application.
+
=== Environment  ===
  
=== Environment ===
+
The following are the minimal requirements for this example.
  
The following are the minimal requirements for this example.
+
*EclipseLink 2.4.2  
 
+
*Eclipse Java EE IDE - Juno Release  
* EclipseLink 2.4.2
+
*Git access to [http://git.eclipse.org/c/eclipselink/examples.git/tree/ eclipselink examples git repository]. The steps to connect to the repo can be found below.  
* Eclipse Java EE IDE - Juno Release
+
*Glassfish 3.1.2 or later  
* Git access to [http://git.eclipse.org/c/eclipselink/examples.git/tree/ eclipselink examples git repository]. The steps to connect to the repo can be found below.
+
*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)
* Glassfish 3.1.2 or later
+
* 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  ===
Line 29: Line 27:
 
#Running the Example<br>  
 
#Running the Example<br>  
 
#*View metadata  
 
#*View metadata  
#*Create entity
+
#*Create entity  
 
#*Update entity  
 
#*Update entity  
 
#*Query entity  
 
#*Query entity  
 
#*Delete entity
 
#*Delete entity
  
<span style="display: none;" id="1362671130064S">&nbsp;</span>
+
<span style="display: none;" id="1362671130064S">&nbsp;</span>  
  
 
== Installation and Configuration  ==
 
== Installation and Configuration  ==
  
1. If you are using Glassfish installation earlier than Glassfish 4.0 (http://dlc.sun.com.edgesuite.net/glassfish/4.0/promoted/) you will need to download newer version of EclipseLink binaries from http://www.eclipse.org/eclipselink/downloads/. Choose OSGI bundles from the available downloads. Replace following files under $GLASSFISH_HOME/glassfish/modules with corresponding jars you downloaded above:
+
1. If you are using Glassfish installation earlier than Glassfish 4.0 (http://dlc.sun.com.edgesuite.net/glassfish/4.0/promoted/) you will need to download newer version of EclipseLink binaries from http://www.eclipse.org/eclipselink/downloads/. Choose OSGI bundles from the available downloads. Replace following files under $GLASSFISH_HOME/glassfish/modules with corresponding jars you downloaded above:  
 
+
- org.eclipse.persistence.antlr.jar
+
- org.eclipse.persistence.jpa.jar
+
- org.eclipse.persistence.asm.jar
+
- org.eclipse.persistence.jpa.modelgen.jar
+
- org.eclipse.persistence.core.jar
+
- org.eclipse.persistence.oracle.jar
+
- javax.persistence.jar
+
- org.eclipse.persistence.dbws.jar
+
  
 +
*org.eclipse.persistence.antlr.jar
 +
*org.eclipse.persistence.jpa.jar
 +
*org.eclipse.persistence.asm.jar
 +
*org.eclipse.persistence.jpa.modelgen.jar
 +
*org.eclipse.persistence.core.jar
 +
*org.eclipse.persistence.oracle.jar
 +
*javax.persistence.jar
 +
*org.eclipse.persistence.dbws.jar
  
2. Clone "examples" from git. The "student" example is stored under [http://git.eclipse.org/c/eclipselink/examples.git/tree/student student]&nbsp;folder.  
+
<br> 2. Clone "examples" from git. The "student" example is stored under [http://git.eclipse.org/c/eclipselink/examples.git/tree/student student]&nbsp;folder.  
  
 
     git clone git://git.eclipse.org/gitroot/eclipselink/examples.git
 
     git clone git://git.eclipse.org/gitroot/eclipselink/examples.git
Line 100: Line 97:
 
<br>  
 
<br>  
  
Now, you are ready to run the student example.&nbsp;
+
Now, you are ready to run the student example.&nbsp;  
  
 
== Running the Example  ==
 
== Running the Example  ==

Revision as of 09:48, 8 April 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. If you are using Glassfish installation earlier than Glassfish 4.0 (http://dlc.sun.com.edgesuite.net/glassfish/4.0/promoted/) you will need to download newer version of EclipseLink binaries from http://www.eclipse.org/eclipselink/downloads/. Choose OSGI bundles from the available downloads. Replace following files under $GLASSFISH_HOME/glassfish/modules with corresponding jars you downloaded above:

  • org.eclipse.persistence.antlr.jar
  • org.eclipse.persistence.jpa.jar
  • org.eclipse.persistence.asm.jar
  • org.eclipse.persistence.jpa.modelgen.jar
  • org.eclipse.persistence.core.jar
  • org.eclipse.persistence.oracle.jar
  • javax.persistence.jar
  • org.eclipse.persistence.dbws.jar


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

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

3. 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


4. 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


5. Build the student project.

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


Server.png


7. Select GlassFish 3.1.2


Gf.png


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


Example domain.png


9. 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