1、management.security.ennabled
(1)、spring boot 1.5版本
通过managemennt.security.enabled=false 来暴露所有端点
(2)、spring boot 2.0版本
在使用spring cloud的时候,如果基于spring boot2的版本的配置中心,无法使用SVN的刷新功能(修改配置后不需要重启服务器),那么需要重新按照新版本的要求进行配置
#yml格式
management:
endpoints:
web:
exposure:
include: refresh
#properties文件格式
management.endpoints.web.exposure.include = *
同时在控制层需要加上相应注解
@RefreshScope
解释: 使用该注解的类,会在接到SpringCloud配置中心配置刷新的时候,自动将新的配置更新到该类对应的字段中, 然后用post 请求去访问 http://localhost:8002/refresh 刷新配置