SpringBoot 监控管理模块actuator没有权限的问题解决方法
程序员文章站
2023-12-15 15:46:46
springboot 1.5.9 版本加入actuator依赖后,访问/beans 等敏感的信息时候报错,如下
tue mar 07 21:18:57 gmt+08:00...
springboot 1.5.9 版本加入actuator依赖后,访问/beans 等敏感的信息时候报错,如下
tue mar 07 21:18:57 gmt+08:00 2017
there was an unexpected error (type=unauthorized, status=401).
full authentication is required to access this resource.
肯定是权限问题了。有两种方式:
1.关闭权限:application.properties添加配置参数
management.security.enabled=false
2.添加权限(未测试):
<dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-security</artifactid> </dependency>
在property中配置权限
id | 描述 | 敏感(sensitive) |
---|---|---|
autoconfig | 显示一个auto-configuration的报告,该报告展示所有auto-configuration候选者及它们被应用或未被应用的原因 | true |
beans | 显示一个应用中所有spring beans的完整列表 | true |
configprops | 显示一个所有@configurationproperties的整理列表 | true |
dump | 执行一个线程转储 | true |
env | 暴露来自spring configurableenvironment的属性 | true |
health | 展示应用的健康信息(当使用一个未认证连接访问时显示一个简单的'status',使用认证连接访问则显示全部信息详情) | false |
info | 显示任意的应用信息 | false |
metrics | 展示当前应用的'指标'信息 | true |
mappings | 显示一个所有@requestmapping路径的整理列表 | true |
shutdown | 允许应用以优雅的方式关闭(默认情况下不启用) | true |
trace | 显示trace信息(默认为最新的一些http请求) | true |
总结
以上所述是小编给大家介绍的springboot 监控管理模块actuator没有权限的问题解决方法,希望对大家有所帮助