Table of Contents
List of common configuration properties that can be found in CommonProperties class. All of these properties can be overridden by their server/client counterparts.
Table A.1. List of common configuration properties
Constant | Value | Description |
---|---|---|
CommonProperties.FEATURE_AUTO_DISCOVERY_DISABLE | jersey.config.disableAutoDiscovery |
Disables feature auto discovery globally on client/server. Default value is |
CommonProperties.JSON_PROCESSING_FEATURE_DISABLE | jersey.config.disableJsonProcessing |
Disables configuration of Json Processing (JSR-353) feature. Default value is |
CommonProperties.MOXY_JSON_FEATURE_DISABLE | jersey.config.disableMoxyJson |
Disables configuration of MOXy Json feature. Default value is |
CommonProperties.OUTBOUND_CONTENT_LENGTH_BUFFER | jersey.config.contentLength.buffer |
An integer value that defines the buffer size used to buffer the outbound message entity in order to
determine its size and set the value of HTTP |
List of server configuration properties that can be found in ServerProperties class.
Table A.2. List of server configuration properties
Constant | Value | Description |
---|---|---|
jersey.config.contentLength.buffer.server |
An integer value that defines the buffer size used to buffer the outbound message entity in order to
determine its size and set the value of HTTP | |
ServerProperties.BV_FEATURE_DISABLE | jersey.config.beanValidation.disable.server |
Disables Bean Validation support. Default value is |
ServerProperties.BV_DISABLE_VALIDATE_ON_EXECUTABLE_OVERRIDE_CHECK | jersey.config.beanValidation.disable.validateOnExecutableCheck.server |
Disables |
ServerProperties.BV_SEND_ERROR_IN_RESPONSE | jersey.config.beanValidation.enableOutputValidationErrorEntity.server |
Enables sending validation error information to the client. Default value is |
ServerProperties.FEATURE_AUTO_DISCOVERY_DISABLE | jersey.config.disableAutoDiscovery.server |
Disables feature auto discovery on server. Default value is |
ServerProperties.HTTP_METHOD_OVERRIDE | jersey.config.server.httpMethodOverride |
Defines configuration of HTTP method overriding. This property is used by HttpMethodOverrideFilter to determine where it should look for method override information (e.g. request header or query parameters). |
ServerProperties.JSON_PROCESSING_FEATURE_DISABLE | jersey.config.disableJsonProcessing.server |
Disables configuration of Json Processing (JSR-353) feature. Default value is |
ServerProperties.LANGUAGE_MAPPINGS | jersey.config.server.languageMappings |
Defines mapping of URI extensions to languages. The property is used by UriConnegFilter. |
ServerProperties.MEDIA_TYPE_MAPPINGS | jersey.config.server.mediaTypeMappings |
Defines mapping of URI extensions to media types. The property is used by UriConnegFilter. |
ServerProperties.MOXY_JSON_FEATURE_DISABLE | jersey.config.disableMoxyJson.server |
Disables configuration of MOXy Json feature. Default value is |
ServerProperties.PROVIDER_CLASSNAMES | jersey.config.server.provider.classnames |
Defines one or more class names that implement application-specific resources and providers. If the property is set, the specified classes will be instantiated and registered as either application JAX-RS root resources or providers. |
ServerProperties.PROVIDER_CLASSPATH | jersey.config.server.provider.classpath |
Defines class-path that contains application-specific resources and providers. If the property is set, the specified packages will be scanned for JAX-RS root resources and providers. |
ServerProperties.PROVIDER_PACKAGES | jersey.config.server.provider.packages |
Defines one or more packages that contain application-specific resources and providers. If the property is set, the specified packages will be scanned for JAX-RS root resources and providers. |
ServerProperties.PROVIDER_SCANNING_RECURSIVE | jersey.config.server.provider.scanning.recursive |
Sets the recursion strategy for package scanning. Default value is |
ServerProperties.RESOURCE_VALIDATION_DISABLE | jersey.config.server.resource.validation.disable |
Disables |
ServerProperties.RESOURCE_VALIDATION_IGNORE_ERRORS | jersey.config.server.resource.validation.ignoreErrors |
Determines whether validation of application resource models should fail even in case of a fatal
validation errors. Default value is |
ServerProperties.WADL_FEATURE_DISABLE | jersey.config.server.wadl.disableWadl |
Disables WADL generation. Default value is |
ServerProperties.WADL_GENERATOR_CONFIG | jersey.config.server.wadl.generatorConfig |
Defines the wadl generator configuration that provides a WadlGenerator. |
List of client configuration properties that can be found in ClientProperties class.
Table A.3. List of client configuration properties
Constant | Value | Description |
---|---|---|
jersey.config.contentLength.buffer.client |
An integer value that defines the buffer size used to buffer the outbound message entity in order to
determine its size and set the value of HTTP | |
ClientProperties.ASYNC_THREADPOOL_SIZE | jersey.config.client.async.threadPoolSize |
Asynchronous thread pool size. Default value is not set. NOT SUPPORTED. |
ClientProperties.BUFFER_RESPONSE_ENTITY_ON_EXCEPTION | jersey.config.client.bufferResponseEntityOnException |
Automatic response buffering in case of an exception. Default value is |
ClientProperties.CHUNKED_ENCODING_SIZE | jersey.config.client.chunkedEncodingSize |
Chunked encoding size. Default value is not set. NOT SUPPORTED. |
ClientProperties.CONNECT_TIMEOUT | jersey.config.client.connectTimeout |
Read timeout interval, in milliseconds. Default value is |
ClientProperties.FEATURE_AUTO_DISCOVERY_DISABLE | jersey.config.disableAutoDiscovery.client |
Disables feature auto discovery on client. Default value is |
ClientProperties.FOLLOW_REDIRECTS | jersey.config.client.followRedirects |
Declares that the client will automatically redirect to the URI declared in 3xx responses. Default value is |
ClientProperties.HTTP_URL_CONNECTION_SET_METHOD_WORKAROUND | jersey.config.client.httpUrlConnection.setMethodWorkaround |
Declares that the client will try to set unsupported HTTP method to |
ClientProperties.JSON_PROCESSING_FEATURE_DISABLE | jersey.config.disableJsonProcessing.client |
Disables configuration of Json Processing (JSR-353) feature. Default value is |
ClientProperties.MOXY_JSON_FEATURE_DISABLE | jersey.config.disableMoxyJson.client |
Disables configuration of MOXy Json feature. Default value is |
ClientProperties.READ_TIMEOUT | jersey.config.client.readTimeout |
Read timeout interval, in milliseconds. Default value is |
ClientProperties.USE_ENCODING | jersey.config.client.useEncoding |
Indicates the value of |