springboot server.context-path不生效问题

context-path不生效问题

在加context-path的时候发现怎么着都不生效,感觉非常奇怪,就是把项目重新搭一遍而已。
改完的配置:
springboot server.context-path不生效问题_第1张图片
启动发现context path还是空的
在这里插入图片描述

问题解决

突然发现有个小警告,这个参数都已经不是个属性了
在这里插入图片描述
查询了一下发现 SpringBoot在2.0版本之后已经弃用server.context-path,而代替为server.servlet.context-path

修改后问题解决

server.servlet.context-path = /dev-api

你可能感兴趣的:(问题记录,context-path不生效,springboot配置)