Add Swagger to Spring Boot in 1 minute (Without Spring Fox)
Are you struggling to add swagger to spring boot? This post will show you how to quickly add the api docs page in 1 minute.
Are you struggling to add swagger to spring boot? This post will show you how to quickly add the api docs page in 1 minute.
When first learning something, we all want to see how it works. So, I’m going to create a quick program and run it so you can have your first bite of Scala. In IntelliJ IDEA, right-click on the folder you want to create the class and select create new Scala class. In the next windows, … Read more
Jakarta servlet quick start tutorial for beginners to get started building web applications using servlets technologies
In this post, I will introduce the fundamentals of serialization in Java that you need to know. The Serializable interface A class that doesn’t implement the Serializable interface cannot be serialized. In the previous post, you can see that the Car and Engine classes both implement Serializable. The Serializable interface is a marker interface. That … Read more
Overview of Spring Cloud Config Server Spring Cloud Config server is a REST application that is built on top of Spring Boot. The main purpose of a config server is to store the configurations for all services in an application (think microservices). Thus, each service doesn’t need to store its configurations. They just need to … Read more