1、引入配置中心的依赖,参考阿里巴巴例子
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
2、创建bootstrap.properties 文件,进行两个配置,其中名字默认是服务名+porperties
spring.application.name=nacos-config-example
spring.cloud.nacos.config.server-addr=127.0.0.1:8848
3、给配置中心新增配置
4、 给controller添加注解 @RefreshScope
@Value("$ 名字")