依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>1.5.9.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<version>1.5.9.RELEASE</version>
</dependency>
配置:
security:
basic:
enabled: true
path: /admin #针对/admin路径进行认证
user:
name: admin #认证使用的用户名
password: password #认证使用的密码
role: SUPERUSER
management:
security:
roles: SUPERUSER
enabled: true #actuator是否需要安全保证
port: 11111 #actuator暴露接口使用的端口,为了和api接口使用的端口进行分离
context-path: /admin #actuator暴露接口的前缀
网友评论