springboot-actuator 401 无权限

在使用springboot-actuator模块时,在 pom.xml 的dependency节点中,新增spring-boot-starter-actuator的依赖:

<dependency> 
    <groupid>org.springframework.bootgroupid> 
    <artifactid>spring-boot-starter-actuatorartifactid> 
dependency> 

然后查看 /beans, /configprops等时总是报401无权限错误。
后来在application.properties添加配置

management.security.enabled=false

启动服务,正常。

你可能感兴趣的:(springboot-actuator 401 无权限)