How do I update the default URL for the Spring-Boot admin UI.
By default it comes up at http://localhost:8080
. I want the admin UI to come up at something like http://localhost:8080/mypath
Asked
Active
Viewed 503 times
2

Praveen Singh
- 219
- 1
- 2
- 7
-
Was finally able to do it by adding the following property in application.properties `spring.boot.admin.context-path=/mypath ` – Praveen Singh Jun 07 '18 at 00:58