此内容没有您所选择的语言版本。
Chapter 3. Features
3.1. New and Changed features 复制链接链接已复制到粘贴板!
This section describes the new functionalities introduced in this release. It also contains information about changes in the existing functionalities.
3.1.1. Changes in EventBus JavaScript client 复制链接链接已复制到粘贴板!
The following section explains the changes in EventBus JavaScript client.
In releases before Eclipse Vert.x 3.9.5, the event bus JavaScript client was available in various locations, such as Maven Central, NPM, and so on.
From Eclipse Vert.x 3.9.5, the EventBus JavaScript client module is available in a new npm location. The client is not available in other locations. You should update your build systems to use the module from the following new location.
3.1.1.2. Versioning of JavaScript client 复制链接链接已复制到粘贴板!
In releases before Eclipse Vert.x 3.9.5, every Eclipse Vert.x release included a new release of the JavaScript client.
However, from Eclipse Vert.x 3.9.5 onward, a new version of JavaScript client will be available in npm only if there changes in the client. You do not need to update your client application for every Eclipse Vert.x release, unless there is a version change.
The value accessor methods in Row and Tuple throw exceptions instead of returning null for invalid values.
-
The methods in
Rowthrows theNoSuchElementExceptionwhen a lookup for a given column does not exist. -
The methods in
RowandTuplethrow theClassCastExceptionwhen the returned value cannot be casted or coerced to the expected type.
The prepared statements that are created using the SqlConnection.Prepare method are no longer cached internally. If you want to cache the prepared statements, you must set up the caching.
The PgConnection.Prepare method creates a named prepared statement. In the previous releases, the method created unnamed prepared statements.
The Red Hat build of Eclipse Vert.x for s390x and ppc64le platforms is supported only in OpenShift environments provisioned on IBM Z and IBM Power Systems infrastructure. Running an Eclipse Vert.x application on a stand-alone installation of RHEL on IBM Z and IBM Power Systems is not supported.
Eclipse OpenJ9 Java images for IBM Z, IBM Power Systems and new images for products supported on IBM Z and IBM Power Systems are available in the Red Hat Ecosystem Catalog.
To deploy the example applications on OpenShift environments provisioned on IBM Z and IBM Power Systems infrastructure, specify the relevant IBM Z or IBM Power Systems image name in the pom.xml file and commands.
Some of the example applications also require other products, such as Red Hat Data Grid to demonstrate the workflows. In this case, you must also change the image names of these products to their relevant IBM Z or IBM Power Systems image names in the YAML file of the example applications.
3.1.8. Fluent Query Method 复制链接链接已复制到粘贴板!
The new class Query is a fluent API. It enables you to create and configure queries before their execution. All the query collectors are available in the Query interface.
The new class PreparedStatement enables you to create and execute prepared statements. The prepared statements can execute multiple interactions such as cursor or stream operations.
The existing class PreparedQuery extends the new class Query. The class can now be used outside the context of the connection.
For example, use the following sample codes to create queries:
Collector Query
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Prepared query
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2. Deprecated features 复制链接链接已复制到粘贴板!
The following functionalities have been deprecated in this release.
The MqttClientOptions.getKeepAliveTimeSeconds() and MqttClientOptions.setKeepAliveTimeSeconds() methods have been deprecated. Use the MqttClientOptions.getKeepAliveInterval() and MqttClientOptions.setKeepAliveInterval() methods instead to get and set the keep alive interval in seconds.
The HttpServerRequest.netSocket() method has been deprecated. Use the new method HttpServerRequest.toNetSocket() instead to establish a TCP tunnel with the client.
The following example shows you how the deprecated method HttpServerRequest.netSocket() was used.
NetSocket sock = request.netSocket();
NetSocket sock = request.netSocket();
The following example shows you how to use the new method HttpServerRequest.toNetSocket().
request.response().toNetSocket(ar -> {
if (ar.succeeded()) {
NetSocket sock = ar.result();
}
request.response().toNetSocket(ar -> {
if (ar.succeeded()) {
NetSocket sock = ar.result();
}
The HttpServerRequest.upgrade() method has been deprecated. Use the new method HttpServerResponse.toWebSocket() instead to upgrade the connection of the current request to a WebSocket.
The following example shows you how the deprecated method HttpServerRequest.upgrade() was used.
ServerWebSocket ws = request.upgrade();
ServerWebSocket ws = request.upgrade();
The following example shows you how to use the new method HttpServerResponse.toWebSocket().
request.response().toWebSocket(ar -> {
if (ar.succeeded()) {
ServerWebSocket ws = ar.result();
}
});
request.response().toWebSocket(ar -> {
if (ar.succeeded()) {
ServerWebSocket ws = ar.result();
}
});
3.2.4. Deprecated the sockjs.BridgeOptions class 复制链接链接已复制到粘贴板!
The sockjs.BridgeOptions class has been deprecated. Use the new sockjs.SockJSBridgeOptions class instead. The sockjs.SockJSBridgeOptions class contains all the options that are required to configure the event bus bridge.
There is no change in the behavior of the new class, except that the name of the data object class has changed. When new bridges were added, there were a lot of duplicate configurations. The new class contains all the possible common configurations, and removes duplicate configurations.
The verticle methods start(Future<Void>) and stop(Future<Void>) have been deprecated. Use the methods start(Promise<Void>) and stop(Promise<Void>) to work with promise.
The extension mechanism for DNS is disabled by default in Eclipse Vert.x. To enable EDNS use the method AddressResolverOptions.setOptResourceEnabled(). Specify the input parameter optResourceEnabled as true.
3.2.7. New connection handler methods 复制链接链接已复制到粘贴板!
The following new handler methods are available:
The
HttpClientRequest.connectionHandler()method is deprecated and will be removed in a future release. UseHttpClient.connectionHandler()method instead to call connection handlers for client requests in your application. For example, use the following code to work withHttpClient.connectionHandler()method:client.connectionHandler(conn -> { // Connection related code });client.connectionHandler(conn -> { // Connection related code });Copy to Clipboard Copied! Toggle word wrap Toggle overflow Future<T>.setHandler()method is deprecated and will be removed in a future release. UseFuture<T>.onComplete(),Future<T>.onSuccess(), andFuture<T>.onFailure()methods instead to call handlers on completion, success, and failure results of an action. For example, use the following code to work withFuture<T>.onComplete()method:Future<String> fut = getSomeFuture(); fut.onComplete(ar -> ...);
Future<String> fut = getSomeFuture(); fut.onComplete(ar -> ...);Copy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.8. AdminUtils Class is no longer available 复制链接链接已复制到粘贴板!
The AdminUtils class is no longer available. Use the new KafkaAdminClient class instead to perform administrative operations on a Kafka cluster.
3.2.9. Updates in HTTP Methods for WebSocket 复制链接链接已复制到粘贴板!
The updates in the HTTP methods for WebSocket are:
The usage of the term WebSocket in method names was inconsistent. The method names had incorrect capitalization, for example, Websocket, instead of WebSocket. The methods that had inconsistent usage of web socket in the following classes have been deprecated and will be removed in a future release. Use the new methods that have correct capitalization instead.
The following methods in
HttpServerOptionsclass are deprecated.Expand Deprecated Methods New Methods getMaxWebsocketFrameSize()getMaxWebSocketFrameSize()setMaxWebsocketFrameSize()setMaxWebSocketFrameSize()getMaxWebsocketMessageSize()getMaxWebSocketMessageSize()setMaxWebsocketMessageSize()setMaxWebSocketMessageSize()getPerFrameWebsocketCompressionSupported()getPerFrameWebSocketCompressionSupported()setPerFrameWebsocketCompressionSupported()setPerFrameWebSocketCompressionSupported()getPerMessageWebsocketCompressionSupported()getPerMessageWebSocketCompressionSupported()setPerMessageWebsocketCompressionSupported()setPerMessageWebSocketCompressionSupported()getWebsocketAllowServerNoContext()getWebSocketAllowServerNoContext()setWebsocketAllowServerNoContext()setWebSocketAllowServerNoContext()getWebsocketCompressionLevel()getWebSocketCompressionLevel()setWebsocketCompressionLevel()setWebSocketCompressionLevel()getWebsocketPreferredClientNoContext()getWebSocketPreferredClientNoContext()setWebsocketPreferredClientNoContext()setWebSocketPreferredClientNoContext()getWebsocketSubProtocols()getWebSocketSubProtocols()setWebsocketSubProtocols()setWebSocketSubProtocols()The new methods for WebSocket subprotocols use
List<String>data type instead of a comma separated string to store items.The following methods in
HttpClientOptionsclass are deprecated.Expand Deprecated Methods New Methods getTryUsePerMessageWebsocketCompression()getTryUsePerMessageWebSocketCompression()setTryUsePerMessageWebsocketCompression()setTryUsePerMessageWebSocketCompression()getTryWebsocketDeflateFrameCompression()getTryWebSocketDeflateFrameCompression()getWebsocketCompressionAllowClientNoContext()getWebSocketCompressionAllowClientNoContext()setWebsocketCompressionAllowClientNoContext()setWebSocketCompressionAllowClientNoContext()getWebsocketCompressionLevel()getWebSocketCompressionLevel()setWebsocketCompressionLevel()setWebSocketCompressionLevel()getWebsocketCompressionRequestServerNoContext()getWebSocketCompressionRequestServerNoContext()setWebsocketCompressionRequestServerNoContext()setWebSocketCompressionRequestServerNoContext()The following handler methods in
HttpServerclass are deprecated.Expand Deprecated Methods New Methods websocketHandler()webSocketHandler()websocketStream()webSocketStream()
-
WebsocketRejectedExceptionis deprecated. The methods will throw theUpgradeRejectedExceptioninstead.
The following authentication and authorization classes and methods are deprecated and will be replaced in a future release.
Classes:
-
AbstractUser -
PubSecKeyOptions -
JDBCAuthOptions -
JDBCHashStrategy -
AccessToken -
KeycloakHelper -
ShiroAuth -
AuthProviderInternal
-
Methods:
-
User.isAuthorized() -
User.clearCache() -
User.setAuthProvider() -
Oauth2Auth.introspectToken() -
Oauth2Auth.getFlowType() -
Oauth2Auth.loadJWK() -
Oauth2Auth.rbacHandler() -
Oauth2ClientOptions.isUseBasicAuthorization() -
Oauth2ClientOptions.setUseBasicAuthorizationHeader() -
Oauth2ClientOptions.getScopeSeparator() -
Oauth2ClientOptions.setScopeSeparator()
-