DEV Community

Cover image for What Is REST API?
Pramuda Liyanage
Pramuda Liyanage

Posted on

What Is REST API?

What is REST API?

The term REST stands for REpresentational State Transfer. It is an architectural style that defines a set of rules in order to create Web Services. In a client-server communication, REST suggests to create an object of the data requested by the client and send the values of the object in response to the user. For example, if the user is requesting for a movie in London at a certain place and time, then you can create an object on the server-side.

So, over here, you have an object and you are sending the state of an object. This is why REST is known as Representational State Transfer.

The architectural style of REST helps in leveraging the lesser use of bandwidth to make an application more suitable for the internet. It is often regarded as the “language of the internet” and is completely based on the resources.

==============Java RESTful Web Services API=============

Java API for RESTful Web Services (JAX-RS) is the Java API for creating REST web services. JAX-RS uses annotations to simplify the development and deployment of web services. JAX-RS is part of JDK, so you don’t need to include anything to use it’s annotation

===========Restful Web Services Annotations===============

Some of the important JAX-RS annotations are:

@Path: used to specify the relative path of class and methods. We can get the URI of a webservice by scanning the Path annotation value.

@GET, @PUT, @post , @DELETE and @HEAD: used to specify the HTTP request type for a method.

@Produces, @Consumes: used to specify the request and response types.

============Principles of REST API========================

Well, there are six ground principles laid down by Dr. Fielding who was the one to define the REST API design in 2000. Below are the six guiding principles of REST:

Stateless :
The requests sent from a client to a server will contain all the required information to make the server understand the requests sent from the client. This can be either a part of URL, query-string parameters, body, or even headers. The URL is used to uniquely identify the resource and the body holds the state of the requesting resource. Once the server processes the request, a response is sent to the client through body, status or headers

Client-Server :
The client-server architecture enables a uniform interface and separates clients from the servers. This enhances the portability across multiple platforms as well as the scalability of the server components.

Uniform Interface :
To obtain the uniformity throughout the application, REST has the following four interface constraints:

**Resource identification
**Resource Manipulation using representations
**self-descriptive messages
**Hypermedia as the engine of application state

Cacheable :
In order to provide a better performance, the applications are often made cacheable. This is done by labeling the response from the server as cacheable or non-cacheable either implicitly or explicitly. If the response is defined as cacheable, then the client cache can reuse the response data for equivalent responses in the future.

Layered system :
The layered system architecture allows an application to be more stable by limiting component behavior. This type of architecture helps in enhancing the application’s security as components in each layer cannot interact beyond the next immediate layer they are in. Also, it enables load balancing and provides shared caches for promoting scalability.

Code on demand :
This is an optional constraint and is used the least. It permits a clients code or applets to be downloaded and to be used within the application. In essence, it simplifies the clients by creating a smart application which doesn’t rely on its own code structure.

Thank You...
Pramuda Liyanage
-Fullstack Developer-

Top comments (2)

Collapse
 
obaino82 profile image
Obaino82

Nice one 👍👏

Collapse
 
pramudaliyanage profile image
Pramuda Liyanage

Thank You