feat(deps): add spring-cloud-starter-zookeeper-discovery for Dubbo/ZK service discovery

- Add ZK discovery dep to parent POM (v1.1.0.RELEASE, Edgware-compatible)
- Add ZK discovery dep to starter POM for runtime classpath inclusion
- Architecture: discovery.enabled=false → Consul registration only
  ZK DiscoveryClient → service lookup for Feign → Ribbon → ServerList
  Closes gap between architecture design doc and implementation


Former-commit-id: 6b5898d0e07ca6ebf2ccbb69ace5fa77ac6f0749
This commit is contained in:
反编译工作区
2026-05-03 20:10:28 +08:00
parent 43c7da2300
commit 452a4a16ec
2 changed files with 9 additions and 0 deletions
@@ -52,6 +52,10 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zookeeper-discovery</artifactId>
</dependency>
</dependencies>
<build>
@@ -108,6 +108,11 @@
<artifactId>spring-cloud-starter-consul-discovery</artifactId>
<version>1.3.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zookeeper-discovery</artifactId>
<version>1.1.0.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-commons</artifactId>