Spring Cloud Zookeeper和服务注册中心
2023-12-05 16:23 更新
Spring Cloud Zookeeper实现了ServiceRegistry
接口,允许开发人员以编程方式注册任意服务。
ServiceInstanceRegistration
类提供了一种builder()
方法来创建Registration
可以使用的Registration
对象,如以下示例所示:
@Autowired private ZookeeperServiceRegistry serviceRegistry; public void registerThings() { ZookeeperRegistration registration = ServiceInstanceRegistration.builder() .defaultUriSpec() .address("anyUrl") .port(10) .name("/a/b/c/d/anotherservice") .build(); this.serviceRegistry.register(registration); }
以上内容是否对您有帮助:
更多建议: