- 增加nacos对应依赖
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
- 增加bootstrap配置文件并迁移配置[应用名称-环境-文件后缀(用于组装出对应的dataID)以及nacos地址]
spring:
application:
name: orderservice
profiles:
active: dev
cloud:
nacos:
discovery:
server-addr: localhost:8848
cluster-name: HZ
config:
file-extension: yaml
要注意 file-extension配置的时候 是没有discovery这一层的!!!!
- 清理application中重复的配置
调试配置方法:
import org.springframework.core.env.Environment;
@Resource
Environment env;
((StandardServletEnvironment) env).propertySources