Interface JettyPropertySet
-
public interface JettyPropertySet
Gathers all Jetty properties.
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONNECTOR_HTTPS_PORT
The port for HTTPS.static String
CONNECTOR_KEY_STORE_FILE
The file path for the key store file.static String
CONNECTOR_KEY_STORE_PASSWORD
The password for the server key store.static String
CONNECTOR_KEY_STORE_TYPE
The type of the key store file.static String
DEPLOYER_CREATE_CONTEXT_XML
Whether to createcontext.xml
files to deploy WARs.static String
DEPLOYER_EE_VERSION
EE version to use when deploying to Jetty 12.x onwards usingcontext.xml
files.static String
DEPLOYER_URL
The URL for calling the Jetty Deployer webapp.static String
MODULES
Comma-separated list of Jetty modules to activate.static String
REALM_NAME
Name of the security realm for Jetty.static String
SESSION_PATH
The default session path to use for all session cookies.static String
USE_FILE_MAPPED_BUFFER
The boolean flag controlling the use of memory mapped buffers for serving static content.
-
-
-
Field Detail
-
DEPLOYER_URL
static final String DEPLOYER_URL
The URL for calling the Jetty Deployer webapp.- See Also:
- Constant Field Values
-
SESSION_PATH
static final String SESSION_PATH
The default session path to use for all session cookies.- See Also:
- Constant Field Values
-
USE_FILE_MAPPED_BUFFER
static final String USE_FILE_MAPPED_BUFFER
The boolean flag controlling the use of memory mapped buffers for serving static content.- See Also:
- Constant Field Values
-
DEPLOYER_CREATE_CONTEXT_XML
static final String DEPLOYER_CREATE_CONTEXT_XML
Whether to createcontext.xml
files to deploy WARs. This is useful for various purposes:- Ability to perform hot deployments
- Ability to tell Jetty to install the WAR under a given context name
- Ability to customise the application classpath
- Accelerated deployment by avoiding an actual copy of the WAR
- See Also:
- Constant Field Values
-
REALM_NAME
static final String REALM_NAME
Name of the security realm for Jetty.- See Also:
- Constant Field Values
-
MODULES
static final String MODULES
Comma-separated list of Jetty modules to activate.- See Also:
- Constant Field Values
-
DEPLOYER_EE_VERSION
static final String DEPLOYER_EE_VERSION
EE version to use when deploying to Jetty 12.x onwards usingcontext.xml
files.
The requirement for specifying the EE version can be understood by reading the Deploying Jetty Context XML Files chapter of the Jetty Operations Guide.
This parameter is used ifDEPLOYER_CREATE_CONTEXT_XML
is set tofalse
.- See Also:
- Constant Field Values
-
CONNECTOR_HTTPS_PORT
static final String CONNECTOR_HTTPS_PORT
The port for HTTPS.- See Also:
- Constant Field Values
-
CONNECTOR_KEY_STORE_FILE
static final String CONNECTOR_KEY_STORE_FILE
The file path for the key store file.- See Also:
- Constant Field Values
-
CONNECTOR_KEY_STORE_PASSWORD
static final String CONNECTOR_KEY_STORE_PASSWORD
The password for the server key store.- See Also:
- Constant Field Values
-
CONNECTOR_KEY_STORE_TYPE
static final String CONNECTOR_KEY_STORE_TYPE
The type of the key store file.- See Also:
- Constant Field Values
-
-