spring-boot-actuator报错Full authentication is required to access this resource
Posted on 2018-09-20 10:55 冰碟 阅读(24286) 评论(0) 编辑 收藏 举报解决办法【设置端点访问 】:
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 后,就看到需要输入用户名和密码了