Flyway Spring Boot Integration Guide w/ Example
How to quickly integrate FlywayDB to Spring Boot application
How to quickly integrate FlywayDB to Spring Boot application
Overview CountDownLatch, as the name suggests, it provides a countdown mechanism. One use case of this class is to block the calling thread until all other specified threads are complete. It sounds vague, doesn’t it? Let’s consider one concrete example to boost our understanding. CountDownLatch Mechanism The principle of CountDownLatch is you create a countdown … Read more
Java provides mechanisms for threads to communicate with each other when working on common resources. This post gives you a concrete example of threads communication.
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.
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