fix: align bootstrap with production config, disable ZK ribbon

- Restore bootstrap to match production (discovery.enabled=false,
  consul.host=371bfca4972c43d2aefcf302d0a4a277)
- Add spring.cloud.zookeeper.enabled=false to prevent
  zookeeperRibbonClientConfiguration runtime error (child context)
- Remove ConfigurationBasedServerList overrides from app properties
  (no longer needed with proper config alignment)
- Revert PersonFeignClient url hardcode back to placeholder name
Bump version to 2.0.16
This commit is contained in:
反编译工作区
2026-05-05 18:39:49 +08:00
parent 7d52fd5d0b
commit d838dd0897
43 changed files with 2459 additions and 9 deletions
@@ -16,8 +16,7 @@ import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@FeignClient(name = "ninca-common-component-organization",
url = "http://127.0.0.1:33011",
@FeignClient(name = "${feign.component-organization.name:ninca-common-component-organization}",
path = "/component/person", fallback = PersonFeignClientFallback.class)
public interface PersonFeignClient {
@RequestMapping(value = {"/add"}, method = {RequestMethod.POST})