REST Service overview

What is Rest? REST stands for Representational State Transfer REST is an architectural style based on HTTP protocol. Remember REST is not a protocol rather it’s an architectural style based on web standards and protocol. In Rest, each and everything is a resource. Each resource will have a representation, Representation can be any MIME type […]

Share this article on

JAX-RS Specifications

JAX-RS: Java API for Restful web services It’s a Java API specification which uses Java SE 5 annotations (JSR 311 specifications) for creating web services according to the REST architectural style. Some of the annotations provided by JAX-RS to map java class as a web Resource are listed below @Path Specifies the relative Path of […]

Share this article on
< Previous Next >