此内容没有您所选择的语言版本。
Chapter 5. Changes in microservices patterns
This section explains the changes in microservices patterns.
5.1. Changes in Eclipse Vert.x circuit breaker 复制链接链接已复制到粘贴板!
The following section describes the changes in Eclipse Vert.x circuit breaker.
The following methods have been removed from the CircuitBreaker class because they cannot be used with futures.
| Removed methods | Replacing methods |
|---|---|
|
|
|
|
|
|
5.2. Changes in Eclipse Vert.x service discovery 复制链接链接已复制到粘贴板!
The following section describes the changes in Eclipse Vert.x service discovery.
The following create methods in service discovery that have Handler<AmqpMessage> as an argument have been removed. These methods cannot be used with futures.
| Removed methods | Replacing methods |
|---|---|
|
|
|
|
|
|
The ServiceDiscovery.registerServiceImporter() and ServiceDiscovery.registerServiceExporter() methods are no longer fluent. The methods return Future<Void>.
The vertx-service-discovery-bridge-kubernetes adds the KubernetesServiceImporter discovery bridge. The bridge imports services from Kubernetes or Openshift into the Eclipse Vert.x service discovery.
From Eclipse Vert.x 4, this bridge is no longer registered automatically. Even if you have added the bridge in the classpath of your Maven project, it will not be automatically registered.
You must manually register the bridge after creating the ServiceDiscovery instance.
The following example shows you how to manually register the bridge.
JsonObject defaultConf = new JsonObject(); serviceDiscovery.registerServiceImporter(new KubernetesServiceImporter(), defaultConf);
JsonObject defaultConf = new JsonObject();
serviceDiscovery.registerServiceImporter(new KubernetesServiceImporter(), defaultConf);