The Best Fluffy Pancakes recipe you will fall in love with. Full of tips and tricks to help you make the best pancakes.

Category Spring Boot

Scalable Apps with Microservices in Spring Boot

spring-microservice

In today’s fast paced world of software development, scalability and fast delivery cycles is a key consideration for modern application. This is where microservice architecture comes in picture – an architecture design approach that enables applications to be more scalable,…

Http Request with Spring WebClient

spring-resttemplate

In Spring 5, a framework for reactive web development was added: Spring webflux. This adds support for non-blocking architectures while coexisting side by side with the current Spring Web MVC APIs. You may create asynchronous web apps with WebFlux by…

A Guide to Spring RestTemplate

spring-resttemplate

REST-based APIs are being used all around us. A lot of applications now use REST APIs for some or all of their functions. Applications must therefore consume APIs elegantly and reliably to function gracefully. RestTemplate is a class within the…

Spring Boot AutoConfiguration

spring-boot-autoconfig

Spring Boot is a tool that makes developing web applications and microservices with Spring Framework faster and easier through Autoconfiguration, taking an opinionated approach to configuration and the ability to create standalone applications. But what is Autoconfiguration and what it…

Spring Security with JWT

spring-security-jwt

In this article, we will continue with our learning of spring security and will see how to implement spring security with JWT token-based authentication. If you are new to spring security, I highly recommend you go through the basics of…