Node.js Http Module to Consume Spring RESTful Web Application

Modules in Node.js

Modules are otherwise called as packages in Node.js. Module is a collection of one or more JavaScript files to serve complex functionality. There are 3 types of modules:

  1. Core/Built-in module - One of the module is HTTP.
  2. External/Third-Party module.
  3. User-defined module.

Consider we have created a Spring RESTful web application using Spring Boot. We can use Node's HTTP module to send all types of HTTP requests and receive responses — no need to add any third-party module to our Node application.

Note: I have used Spring Boot 2.1.x, Java 11 to create Spring REST application and MySQL to connect to the database.

This article describes how to use Node.js Http Core Module to send HTTP GET/POST/PUT/DELETE requests to Spring REST API and receive the response.

HTTP Module

Using this module, we can make HTTP requests (GET, POST, PUT and DELETE) and can create an HTTP server that listens on a particular port and sends responses back to the client.

GET Request

Syntax: http.get(url[, options][, callback])

Used to send GET request and returns ClientRequest. 

Example:

JavaScript


In the above example, the http.get() method is used to send HTTP GET request to the Spring REST API endpoint (http://localhost:8080/product/controller/getDetails) mentioned in the first parameter. The second parameter is a callback to listen to the events on ClientRequest.

We added a callback method to the data event. This will be called every time whenever another piece of data arrives. In our example, we also added a callback for the end event once after all the data is received, and, in that callback, we have converted the data received into JSON format.

We have an error event also, which will be executed when the request is not made properly.

After we execute the above example, we can observe the console. JSON data returned by the Spring REST API is displayed as follows.

JSON


POST Request

Syntax: http.request(options[,callback])

Example:

JavaScript


In the above example, the http.request() method is used to send HTTP POST request to the Spring REST API endpoint. Define the data which we must send along with the POST request to Spring REST API. 

As our Spring Rest application needs data in JSON format, created data, assigned the JSON value into it. We must set the values like information port number, host name, path, request method type, headers in the options, which can be used to send the request, mentioned in the first parameter. Here we are sending request to “http://localhost:8080/product/controller/addProduct”. The second parameter is a callback to listen to the events on ClientRequest.

We added a callback method to the data event. This will be called every time whenever another piece of data arrives. In our example, 

we also added a callback for the end event once after all the data is received and, in that callback, we have converted the data received into JSON format.

We have error event also, which will be executed when the request is not made properly. Req.write(data) here is used to write data to the request body.

With req.end(), we call the end() method to indicate that we are done handling the request and the response can be sent to the user who made the http request.

After we execute the above example, we can observe the console.  

Result is: Product added successfully with id:1002.

We can observe the data inserted in the table connected with the Spring rest application.

Note: 

  1. PUT and DELETE requests can also be sent in the same way.
  2. The only difference between http.get() and http.request() is that it sets the method to GET, and calls req.end() automatically.

If you want to see the complete code of the Spring Rest application, which I consumed here, please refer my another article “Java 11 HTTP Client API to Consume Restful Web Service Created Using Spring Boot”.

Conclusion

With the help of Http module in Node.js, we can send different types of HTTP requests to Spring Rest API. No need to add any external library to our application. Using this Http module, we are required to receive the response in chunks and execute a callback function when all the data is received. And We also need to parse the response data. 

 

 

 

 

Top