1. 程式人生 > >Springboot中新增contextPath

Springboot中新增contextPath

spring boot預設是/ ,這樣直接通過http://ip:port/就可以訪問到index頁面,如果要修改為http://ip:port/path/ 訪問的話,那麼需要在application.properties檔案中加入server.context-path= /你的path,比如:spring-boot,那麼訪問地址就是http://ip:port/spring-boot路徑。

profile配置:

server.context-path=/spring-boot

yml檔案配置

server
     context-apth: /spring-boot

在IDEA 中配置如下

更新到2.0後寫法變成了server.servlet.context-path=/XXXXXX (沒試過)