Tag: how to change
Spring Boot – How to Change Default Tomcat Server Port
by  Java4s | 5 Comments
  [ Ask Question ]
In our previous RESTful example, when we start the application Spring Boot’s inbuilt tomcat server by default will take 8080 as its port number, did you observe that 🙂 go back and have a look once. In this article, I…
Spring Boot – How to Change Default Context Path
by  Java4s | 4 Comments
  [ Ask Question ]
Firstly what is this context path? simply its our application name. Generally while we are hitting any application in the browser, we will write the URL with the application name(context) right? I mean… http://localhost:<port>/<application_name or context_path>/operation_name But if you check Spring…