REST Web Services

REST Web Services

REST(Representational State Transfer) is architecture that mostly used in web applications to transfer in-sensitive data over HTTP protocol. Data format would JSON,XML,HTML,plain text etc.. but mostly used is JSON format for fast accessing.

Below are Series of tutorials on REST using Jersey and Spring.

REST Webservices Concepts

 REST means Representational State Transfer  are Stateless and uses as a Uniform Interface Resources are manipulated through Representations Responses are Representations and they carry or point to current…
READ MORE

REST Jersey Maven Tutorial-Part1

REST Jersey Maven Tutorial REST Jersey Maven Tutorial will drive you about REST application using JAX-RS where Jersey is implementation provider. Go through REST Concepts Tutorial before going through this tutorial. Download the REST Webservices at end of the tutorial….
READ MORE

REST Jersey Maven JSON Tutorial-Part2

REST Jersey Maven JSON Tutorial REST Jersey maven JSON tutorial will drive “How to create JSON webservices with Jersey“.  Go through below tutorials to get idea of REST web  services. You can download  REST JSON Example code at bottom of…
READ MORE

REST Jersey Spring integration

REST Jersey Spring Hibernate JPA example

Jersey Spring Hibernate Example Jersey spring hibernate example tutorial will drive you on Exposing JPA entity as REST resource. Let’s have look into this Jersey spring tutorial explained spring integration with jersey. We will use the same code base and will…
READ MORE

REST regular expressions-part3

REST Regular Expressions REST URI Resources can be expressed with Regular expression on @PathParam. The @Path annotation supports the use of template parameters as :{ name : regex }. The template parameter name is required.The colon (:) followed by a…
READ MORE

 Liferay Jersey REST  Integration Tutorial

Jersey Integration in liferay is easy as in other framework and this tutorial will drive you on how to create web services using jersey framework. Liferay out of the box provides axis engine framework for SOAP and JSON web services.  Liferay Service Builder has ability to generate…
READ MORE

Spring REST Webservices Tutorial

In this tutorial we will see how to implement Spring REST  Web services? Spring MVC framework can be used for generating REST resources also, before stepping into this tutorial, click here to access Spring MVC tutorial and will get idea on implementing…
READ MORE

Spring REST JSON Post Example

Spring REST JSON Post Example In this tutorial, we will see How to post JSON object in post requests.  You can access Spring REST Maven Tutorial for beginners here. This tutorial provides sample code Spring REST JSON pojo example: Hope…
READ MORE