Category: Spring Boot


  • Spring boot change default port of server

    By default, Spring boot applications start with embedded tomcat server start on default port 8080. We can change default server port to any other port, using any one of below technique. 1. Update default spring boot server port from application properties file We can do parcels of brilliant things by basically making few passages in application properties record in any spring boot application. Changing server port is one…

  • Conquering Concurrency: Pessimistic Locking in Spring Boot

    In the bustling world of multi-user applications, ensuring data integrity becomes paramount. When multiple users contend for the same resource, conflicts can arise, leading to lost updates and unintended side effects. Here’s where pessimistic locking steps in, acting as a valiant knight guarding data consistency in Spring Boot applications. What is Pessimistic Locking? Imagine two…

  • Mastering Spring Boot: Unleashing the Power of Productivity

      In the world of Java development, Spring Boot has emerged as a game-changer. This revolutionary framework provides a streamlined way to build production-ready applications. With its minimalist approach and a plethora of built-in features, Spring Boot has become the go-to choice for developers seeking rapid application development. The Spring Boot Advantage Convention over Configuration…