SpringBoot指定服務項目名

使用不一樣SpringBoot版本,指定訪問項目路徑的項目名,使用的配置也不同

SpringBoot版本 配置
1.x server.context-path=/demo
2.x server.servlet.context-path=/demo

如下爲本地測試可行代碼
pom.xml中使用SpringBoot版本app

<version>1.5.9.RELEASE</version>

application.properties文件添加測試

server.context-path=/demo

pom.xml中使用SpringBoot版本spa

<version>2.0.2.RELEASE</version>
server.servlet.context-path=/demo


application.properties文件添加code

server.servlet.context-path=/demoserver

相關文章
相關標籤/搜索