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
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…
Exception Handling Spring Boot REST API
Exception handling is one of the core concepts which is really necessary when we build an application using spring boot. So in REST API development, it carries a bigger role.…
Database Migration Using Flyway in Spring Boot
Flyway is one of the best open-source database migration tools. Flyway supports writing migrations in SQL and Java (for advanced data transformations or dealing with LOB). Here we are discussing…
Serve Image Stored in a Server Using Spring Boot
Let’s assume you need to create a direct link to serve an image file stored in a web server using Spring Boot. Here we are discussing how we can achieve…
Consuming REST API Using Feign Client in Spring Boot
Spring Cloud OpenFeign is capable of communicating with third-party REST API and commonly used with Spring Boot. In this tutorial, we are going to explain how we can use feign…
How to Use Feign Client in Spring Boot
Spring Cloud OpenFeign an openfeign integration module for spring boot. Feign is one of the best HTTP clients which we could use with Spring boot to communicate with third-party REST…
How to Create a Spring Boot Project
Hi, fellow readers let’s start our fresh topic SpringBoot with How to create a spring boot project. Spring was a well-evolved java based framework to develop web applications. Within the…