You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
864 B
864 B
使用eureka
修改网关
- 打开
/sop-gateway/pom.xml
添加依赖:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
- 打开sop-gateway下
application-dev.properties
注释nacos配置
# nacos cloud配置
#spring.cloud.nacos.discovery.server-addr=${nacos.url}
#nacos.config.server-addr=${nacos.url}
添加eureka配置
# eureka注册中心
eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/
微服务端修改
步骤同上
admin修改
打开application-dev.properties
,新增配置
# eureka注册中心
eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/
# 如果使用eureka,填eureka,使用nacos,填eureka
registry.name=eureka