SpringBoot App CLI start up
Run Spring Boot app using Maven Spring Boot provide the plugin with maven go to your project directory and run >> mvn spring-boot:run Run Spring Boot app with java -jar command >> java -jar target/app-0.0.1-SNAPSHOT.jar Run Spring Boot App with Gradle >> gradle bootRun Spring Cloud architecture API gateway A gateway can take care of securing and routing messages, hiding services, throttling load, and many other useful things. Spring Cloud Gateway gives control of API layer, integrating Spring Cloud service discovery and client-side load-balancing solutions to simplify configuration and maintenance. Service Registry A service registry is a database used to keep track of the available instances of each microservice in an application. The service registry needs to be updated each time a new service comes online and whenever a service is taken offline or becomes unavailable. Spring Bean Scopes singleton - only one instance of the spring bean will be created fo...