springboot 配置文件运行时更新
项目上线后,经常需要更新配置。springboot下配置默认加载后无法做到运行时更新。不过springcloud里提供了刷新
支持。
##相关依赖Spring actuator,Spring cloud starter
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframewor
968
1
0
1年前