软件编程
位置:首页>> 软件编程>> java编程>> SpringBoot 监控管理模块actuator没有权限的问题解决方法

SpringBoot 监控管理模块actuator没有权限的问题解决方法

作者:毛会懂  发布时间:2022-01-26 21:50:11 

标签:spring,boot,actuator,权限

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暴露来自SpringConfigurableEnvironment的属性true
health展示应用的健康信息(当使用一个未认证连接访问时显示一个简单的'status',使用认证连接访问则显示全部信息详情)false
info显示任意的应用信息false
metrics展示当前应用的'指标'信息true
mappings显示一个所有@RequestMapping路径的整理列表true
shutdown允许应用以优雅的方式关闭(默认情况下不启用)true
trace显示trace信息(默认为最新的一些HTTP请求)true

总结

以上所述是小编给大家介绍的SpringBoot 监控管理模块actuator没有权限的问题解决方法网站的支持!

来源:https://www.cnblogs.com/maohuidong/p/8036597.html

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com