报错:Deprecated configuration property ‘management.context-path‘

it2023-01-21  65

场景

application.yml编译报错,报错信息: Deprecated configuration property ‘management.context-path’

报错配置:

management: context-path: /admin

解决方案

这是因为SpringBoot 2.0+版本弃用context-path,改为如下配置即可:

server: servlet: context-path: /admin
最新回复(0)