HTTP methods and status codes in Rest service

The most commonly used HTTP methods in Rest services are as below 1) GET This method is used to Get the resource without making any modification to the resource. GET should only get the resource. We can call it as Read only method. 2) POST This method is used to create a new resource. Whenever […]

Share this article on

Providers of JAX-RS annotations

Some of the Implementation providers of JAX-RS annotations All the above providers provide the libraries to support the JSR 311 specifications. We can use any one of these providers to develop the Restful web service. Let’s see the overview of each of these implementations Jersey Overview Jersey is an open source framework which can be […]

Share this article on
< Previous Next >