Monthly Archive: June 2013

Overview of a JAX-RS Application

The following code sample is a very simple example of a root resource class that uses JAX-RS annotations: package com.dineshonjava.ws.rest; import javax.ws.rs.GET; import javax.ws.rs.Produces; import javax.ws.rs.Path; // The Java class will be hosted at the …

JAX-RS & Jersey Hello World Example

This tutorial explains how to develop RESTful web services in Java with the JAX-RS reference implementation Jersey. we show you how to develop a simple hello world REST web application with Jersey. Technologies and Tools …

REST Web Service Tutorial-JAX-RS

Int his REST Web Service tutorial we will demonstrates how RESTful services are created using JAX-RS. We’ll be using Tomcat as our primary application server. Java API for RESTful Web Services (JAX-RS), is a set …