Golang / Go Crash Course 08 | Using Redis as A Cache for our REST API
In this article we are going to setup a caching layer in our Golang application by using Redis. REDIS is REmote DIctionary Server which is …
Favourite tutorials for developers
In this article we are going to setup a caching layer in our Golang application by using Redis. REDIS is REmote DIctionary Server which is …
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 us to manage the application dependencies efficiently and also will help us to down load those libraries to build and run the application using docker containers.
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 the mashup of the two APIs that we are going to integrate using goroutines and channels.
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 of Database, Independent of any external agency.
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 NoSQL database from Google Firebase…
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 requests that we are going to receive in our API. We will have 2 REST APIs based on url “/posts”, with GET method to return the list of posts, with POST method to create new post.
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 to read, create and update records using our application. However, our application was not very robust. In this post, we will look at exception handling in a Spring Boot application.
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 Spring Boot Microservices. That particular approach works best if your data model is exactly similar to your domain model. Usually, that’s not the case. In this post, we will look at the right way of creating REST API using Spring Boot.
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 standardized the use of HTTP action verbs: POST as an insert data, GET as a read/retrieve data, PUT as an update data, DELETE as a delete data . JAX-RS is a JAVA-based programming language API and specification that allows RESTful Web Services to be established.
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 …