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 "Creating a JAX-RS Web Service"

Line 1: Line 1:
[[Image:ApacheWinkJAXRSLibrary.zip]]
+
[[Image:ApacheWinkJAXRSLibrary.zip]]  
  
[[Image:Snap5.jpg]]
 
  
[[Image:Snap1.jpg]]
 
  
[[Image:Snap2.jpg]]
+
1. Create a JAX-RS User library from the .jars in the archive above:[[Image:Snap5.jpg]]  
  
[[Image:JAXRS.zip]]
 
  
[[Image:Snap4.jpg]]
 
  
[[Image:Snap6.jpg]]
+
2. Create a Dynamic Web Project targeting Tomcat and add the JAX-RS facet:<br> [[Image:Snap1.jpg]]  
  
[[Image:Snap7.jpg]]
 
  
Define the Initialization parameter name/value as javax.ws.rs.Application/com.test.AddressBookApplication like below.
 
  
[[Image:Snap8.jpg]]
+
3. Import
  
[[Image:Snap9.jpg]]
+
<br>
  
Start the server and add the JAXRS project, enter the following URL in the browser to test the JAX-RS Web Service: http://localhost:8080/JAXRS/jaxrs/addresses
+
[[Image:JAXRS.zip]]
 +
 
 +
[[Image:Snap4.jpg]]
 +
 
 +
[[Image:Snap6.jpg]]
 +
 
 +
[[Image:Snap7.jpg]]
 +
 
 +
Define the Initialization parameter name/value as javax.ws.rs.Application/com.test.AddressBookApplication like below.
 +
 
 +
[[Image:Snap8.jpg]]
 +
 
 +
[[Image:Snap9.jpg]]
 +
 
 +
Start the server and add the JAXRS project, enter the following URL in the browser to test the JAX-RS Web Service: http://localhost:8080/JAXRS/jaxrs/addresses  
  
 
[[Image:Snap11.jpg]]
 
[[Image:Snap11.jpg]]

Revision as of 21:13, 29 April 2010

File:ApacheWinkJAXRSLibrary.zip


1. Create a JAX-RS User library from the .jars in the archive above:Snap5.jpg


2. Create a Dynamic Web Project targeting Tomcat and add the JAX-RS facet:
Snap1.jpg


3. Import


File:JAXRS.zip

Snap4.jpg

Snap6.jpg

Snap7.jpg

Define the Initialization parameter name/value as javax.ws.rs.Application/com.test.AddressBookApplication like below.

File:Snap8.jpg

Snap9.jpg

Start the server and add the JAXRS project, enter the following URL in the browser to test the JAX-RS Web Service: http://localhost:8080/JAXRS/jaxrs/addresses

Snap11.jpg

Back to the top