How to change Context path in a Spring Boot application

Out of the box, Spring boot applications are accessed through the default context path “/” i.e. you can access the application directly at http://localhost:PORT/. In this tutorial we will learn how to change the default root Web context of a Spring Boot application. As you will see, Spring boot is quite flexible and provide you multiple options to configure applications context root path.

Read more