Golang / Go Crash Course 07 | Building a Docker Container for our REST API
In this article we are going to build a docker container for our Golang application and before doing that we are going to quickly setup Go Modules that will allow…
Favourite tutorials for developers
In this article we are going to build a docker container for our Golang application and before doing that we are going to quickly setup Go Modules that will allow…
In this article we are going to use goroutines and channels to build an API mashup pulling data from two different APIs… This is going to be the result after…
In this article, we are going to apply the principles of the clean architecture by (Uncle) Bob Martin in our Golang API: Independent of frameworks, Testable, Independent of UI, Independent…
In this article, i am going to connect our Golang API with a Firestore database replacing the array that we are currently using to store the data. Firestore is a…
In this article, it will show you how to create a simple REST API using Golang and Mux. Mux is a router that will allow us to handle the HTTP…
Exception Handling is one of the most important aspects of a production-level Spring Boot Microservice. In the last post Creating REST API using Spring Boot, we had added the functionality…
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…
Crud operation basically refers to create, read, update and delete as insert a data or record, get or search data, modify data or record and delete a record. Crud has…
Spring Boot, MySQL, Spring Security, JWT, JPA, Rest API Build Restful CRUD API for a blog using Spring Boot, Mysql, JPA and Hibernate. Steps to Setup 1. Clone the application…
REST API (also known as RESTful API) is an application programming interface (API) that adheres to the REST architectural conventions and constraints used in client-server communication. REST stands for REpresentational…