Skip to content
Advertisement

Run Spring Boot Project with base directory – localhost:8080/demo/

I have setup a run configuration in eclipse but it’s running in localhost:8080 but I want it to run in localhost:8080/demo/ but it’s not working. I have attached the run configuration and application properties file enter image description here

enter image description here

can anyone help me to run spring boot project in localhost:8080/demo/

Advertisement

Answer

I think that you can just add this to your properties file

server.servlet.context-path=/demo
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement