Create Simple gRPC-Gateway in Go
In this article, we will learn how to create a simple grpc-gateway with Go. For this, we need to prepare our Go project for the grpc-gateway. You can find detailed…
Favourite tutorials for developers
In this article, we will learn how to create a simple grpc-gateway with Go. For this, we need to prepare our Go project for the grpc-gateway. You can find detailed…
In the post Exposing repositories as REST resources, we exposed a repository as a RESTful interface using Spring Data REST. However, that’s not the conventional way of creating REST API…
For any application, it is an important functionality to be able to provide its data to the consumer. REST APIs are one of the most popular ways to do so.…
If you are familiar with modern web development then you will have encounter the terms like REST and API. If you have worked with APIs or heard of these terms…
This article shows you how to use cURL command to POST JSON data to a Spring REST API.
Some cURL POST request examples for self reference: To POST without data, To POST with data, To POST with a file, add this -F file=@"path/to/data.txt" , To POST with JSON…
APIs often self-document information, such as their implementation and internal structure, which can be used as intelligence for a cyber-attack. Additional vulnerabilities, such as weak authentication, lack of encryption, business…
APIs are created in ways that redefine and stretch products, services, and organizations. In this article, we’ll dig a little deeper into API design principles and best practices. Also, we’ll…
Spring is a popular Java application framework for creating enterprise applications. Spring Boot is the next step in evolution of Spring framework. It helps create stand-alone, production-grade Spring based applications…
Learn to configure and create JAX-RS 2.0 REST APIs using Spring Boot and Jersey framework. This example application uses Jersey’s ServletContainer to deploy the REST APIs.