Python 官方文档:入门教程 => 点击学习
management.security.enabled=false无效 一、在1.5.x版本中通过management.security.enabled=false来暴露所有端点
具体配置类:
org.springframework.boot.actuate.autoconfigure.ManagementServerProperties$Security
找到类ManagementServerProperties,发现Security内部类已经被删除
方式1:
# 启用端点 env
management.endpoint.env.enabled=true
# 暴露端点 env 配置多个,隔开
management.endpoints.WEB.exposure.include=env
方式2:
方式1中的暴露方式需要一个一个去开启需要暴露的端点,方式2直接开启和暴露所有端点
management.endpoints.web.exposure.include=*
注意在使用Http访问端点时,需要加上默认/actuator 前缀
management.security.enabled=true
或
management:
security:
enabled:true
可以采用
management.endpoints.web.exposure.include=
代替的全部放开请使用*,或把需要开放的接口端点使用“,”隔开,如:env,health。
management:
endpoints:
web:
exposure:
include: "*"
更多配置信息请参考spring-boot endpoints
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: SpringBoot2.x中management.security.enabled=false无效的解决
本文链接: https://lsjlt.com/news/131009.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0