spring-boot-actuator报错Full authentication is required to access this resource

解决办法【设置端点访问 】:

1, 关闭验证

management.security.enabled=false

2,开启HTTP basic认证 

-  添加依赖

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>

- application.properties 添加用户名和密码

security.user.name=admin
security.user.password=123456
management.security.enabled=true
management.security.role=ADMIN

访问URL http://localhost:8080/env 后,就看到需要输入用户名和密码了

原文地址:https://www.cnblogs.com/icebutterfly/p/9679520.html