I want to change context path for spring boot 2 for example i want to serve on http://localhost:8080/test/
i mean it not working for me with spring-boot-starter-webflux:2.0.0.RELEASE
it only working with spring-boot-starter-web::2.0.0.RELEASE
I have tried
server.servlet.context-path=/test
But nothing happened to me still serve on url http://localhost:8080/
server.servlet.context-pathonly works with embedded container. How are you deploying your application ? - Kedar Joshiserver.servlet.*applies towebflux. - Kedar Joshi