Class NettyClientProperties
NettyConnectorProvider
.- Since:
- 2.32
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Sets the endpoint identification algorithm to HTTPS.static final String
This property determines the number of seconds the idle connections are kept in the pool before pruned.static final String
This property determines the maximum number of idle connections that will be simultaneously kept alive, per destination.static final String
This property determines the maximum number of idle connections that will be simultaneously kept alive in total, rather than per destination.static final String
The maximal number of redirects during single request. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
MAX_CONNECTIONS_TOTAL
This property determines the maximum number of idle connections that will be simultaneously kept alive in total, rather than per destination. The default is 60. Specify 0 to disable.
- See Also:
-
IDLE_CONNECTION_PRUNE_TIMEOUT
This property determines the number of seconds the idle connections are kept in the pool before pruned. The default is 60. Specify 0 to disable.
- See Also:
-
MAX_CONNECTIONS
This property determines the maximum number of idle connections that will be simultaneously kept alive, per destination. The default is 5.
This property is a Jersey alternative to System property http.maxConnections. The Jersey property takes precedence over the system property.
- See Also:
-
ENABLE_SSL_HOSTNAME_VERIFICATION
Sets the endpoint identification algorithm to HTTPS.
The default value is
true
(for HTTPS uri scheme).The name of the configuration property is "jersey.config.client.tls.enableHostnameVerification".
- Since:
- 2.35
- See Also:
-
MAX_REDIRECTS
The maximal number of redirects during single request. Value is expected to be positiveInteger
. Default value is . HTTP redirection must be enabled by propertyClientProperties.FOLLOW_REDIRECTS
, otherwiseMAX_REDIRECTS
is not applied.- Since:
- 2.36
- See Also:
-
-
Constructor Details
-
NettyClientProperties
public NettyClientProperties()
-