AWS Lambda is Amazon Web Services (AWS) serverless computing platform that allows developers to run their code without building or managing servers. Java is one of the most popular programming…
Java
Microservices – Centralized Configurations With Spring Cloud Config
Spring cloud config is provides externalized configurations for a distributed application. I’m going to explain how we can set up a spring cloud configuration server and consume that configuration server…
Microservices – Exception Handling
Exception handling in microservices is a challenging concept while using a microservices architecture since by design microservices are well-distributed ecosystem. So if there is a failure inside the ecosystem we…
Microservices – Utility Payment Service Implementation
Hello readers, here is the latest article on Building Microservices With Spring Boot – Free Course With Practical Project which focuses on utility payment service implementation which enables users to…
Microservices – Fund Transfer Service Implementation
Hello folks, Here is the latest article on fund transfer service implementation for our internet banking microservices project using the java spring boot framework. In this service, I’m going to…
Building Microservices With Spring Boot – Free Course With Practical Project
Hello readers, Here I’m starting my new article series on building Microservices with Spring Boot, and I’m going to write this as a free course on practical microservices building using…
Spring Boot REST API CRUD With DynamoDB Tutorial
In this article, I’m going to explain how we can use DynamoDB with a Spring Boot application with developing a REST API that covers CRUD operations. Here I’ll explain how…
Spring Boot REST API Using Spring Data MongoDB Tutorial
In this article, I’m going to explain how to use the MongoDB database with a Spring Boot application using a practical scenario. Additionally, I’m going to develop a REST API…
Guide to use Lombok In Spring Boot
Project Lombok, is one of the coolest java libraries capable of minimizing your code. This is a plugin that we could configure with your editor and build tools. Then you would not have…
Spring Boot REST API Using JPA, Hibernate, MySQL Tutorial
In this article, I’m going to explain how we can build a REST API using JPA, Hibernate, and MySQL in Spring Boot. Here JPA (Java Persistence API) is used to…