Interface TomcatPropertySet
-
public interface TomcatPropertySet
Gathers all Tomcat properties.
-
-
Field Summary
Fields Modifier and Type Field Description static String
AJP_PORT
Port tomcat will listen on for AJP 1.3 requests.static String
CONNECTOR_CLIENT_AUTH
The requirements for client authentication.static String
CONNECTOR_EMPTY_SESSION_PATH
The boolean value for the empty session path connector property.static String
CONNECTOR_HTTP_UPGRADE_PROTOCOL
To enable HTTP/2 support for an HTTP connector.static String
CONNECTOR_KEY_ALIAS
The alias of the key in the key store.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
CONNECTOR_MAX_HTTP_HEADER_SIZE
The maximum HTTP header size.static String
CONNECTOR_PROTOCOL_CLASS
The HTTP protocol class.static String
CONNECTOR_SSL_IMPLEMENTATION_NAME
The class name of the SSL implementation to use.static String
CONNECTOR_SSL_PROTOCOL
The SSL protocol the connector is using.static String
CONNECTOR_TRUST_STORE_FILE
The file path for the trust store file.static String
CONNECTOR_TRUST_STORE_PASSWORD
The password for the server trust store.static String
CONNECTOR_TRUST_STORE_TYPE
The type of the trust store file.static String
CONTEXT_ALLOWMULTIPART
Whether the contexts for deployed Web applications should allow multipart parsing.static String
CONTEXT_ALLOWWEBJARS
Whether the contexts for deployed webapplications should allow webjars supportstatic String
CONTEXT_RELOADABLE
Whether the contexts for deployed Web applications should be set as reloadable.static String
COPY_WARS
Whether WAR deployables should be copied or referenced.static String
CUSTOM_VALVE
Custom valves defined as properties separated by|
Maven example:
<cargo.tomcat.valve.stuckthread>
className=org.apache.catalina.valves.StuckThreadDetectionValve|
threshold=60
</cargo.tomcat.valve.stuckthread>static String
DEPLOY_UPDATE
Tomcat Manager update parameter when doing a deploy.static String
EMBEDDED_OVERRIDE_JAVA_LOGGING
Whether to override the Java logging in the embedded container.static String
HOST_STARTSTOPTHREADS
Number of threads the host will use to start context elements in parallel.static String
HTTP_SECURE
Whether the HTTP container is secured.static String
UNDEPLOY_ALL_VERSIONS
Tomcat Manager update parameter when doing an undeploy.static String
URI_ENCODING
URI Encoding to set.static String
USE_HTTP_ONLY
Whether to use use http only.static String
WEBAPPS_DIRECTORY
Thewebapps
directory of Tomcat.
-
-
-
Field Detail
-
CONNECTOR_EMPTY_SESSION_PATH
static final String CONNECTOR_EMPTY_SESSION_PATH
The boolean value for the empty session path connector property.- See Also:
- Constant Field Values
-
URI_ENCODING
static final String URI_ENCODING
URI Encoding to set.- See Also:
- Constant Field Values
-
AJP_PORT
static final String AJP_PORT
Port tomcat will listen on for AJP 1.3 requests.- See Also:
- Constant Field Values
-
CONTEXT_RELOADABLE
static final String CONTEXT_RELOADABLE
Whether the contexts for deployed Web applications should be set as reloadable.- See Also:
- Constant Field Values
-
CONTEXT_ALLOWMULTIPART
static final String CONTEXT_ALLOWMULTIPART
Whether the contexts for deployed Web applications should allow multipart parsing.- See Also:
- Constant Field Values
-
CONTEXT_ALLOWWEBJARS
static final String CONTEXT_ALLOWWEBJARS
Whether the contexts for deployed webapplications should allow webjars support- See Also:
- Constant Field Values
-
COPY_WARS
static final String COPY_WARS
Whether WAR deployables should be copied or referenced.- See Also:
- Constant Field Values
-
WEBAPPS_DIRECTORY
static final String WEBAPPS_DIRECTORY
Thewebapps
directory of Tomcat.- See Also:
- Constant Field Values
-
HOST_STARTSTOPTHREADS
static final String HOST_STARTSTOPTHREADS
Number of threads the host will use to start context elements in parallel.- See Also:
- Constant Field Values
-
HTTP_SECURE
static final String HTTP_SECURE
Whether the HTTP container is secured.- See Also:
- Constant Field Values
-
USE_HTTP_ONLY
static final String USE_HTTP_ONLY
Whether to use use http only.- See Also:
- Constant Field Values
-
CONNECTOR_PROTOCOL_CLASS
static final String CONNECTOR_PROTOCOL_CLASS
The HTTP protocol class.- 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_TYPE
static final String CONNECTOR_KEY_STORE_TYPE
The type of 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_ALIAS
static final String CONNECTOR_KEY_ALIAS
The alias of the key in the key store.- See Also:
- Constant Field Values
-
CONNECTOR_TRUST_STORE_FILE
static final String CONNECTOR_TRUST_STORE_FILE
The file path for the trust store file.- See Also:
- Constant Field Values
-
CONNECTOR_TRUST_STORE_TYPE
static final String CONNECTOR_TRUST_STORE_TYPE
The type of the trust store file.- See Also:
- Constant Field Values
-
CONNECTOR_TRUST_STORE_PASSWORD
static final String CONNECTOR_TRUST_STORE_PASSWORD
The password for the server trust store.- See Also:
- Constant Field Values
-
CONNECTOR_CLIENT_AUTH
static final String CONNECTOR_CLIENT_AUTH
The requirements for client authentication.- See Also:
- Constant Field Values
-
CONNECTOR_SSL_IMPLEMENTATION_NAME
static final String CONNECTOR_SSL_IMPLEMENTATION_NAME
The class name of the SSL implementation to use.- See Also:
- Constant Field Values
-
CONNECTOR_SSL_PROTOCOL
static final String CONNECTOR_SSL_PROTOCOL
The SSL protocol the connector is using. If not specified, the default is TLS.- See Also:
- Constant Field Values
-
CONNECTOR_HTTP_UPGRADE_PROTOCOL
static final String CONNECTOR_HTTP_UPGRADE_PROTOCOL
To enable HTTP/2 support for an HTTP connector.- See Also:
- Constant Field Values
-
CONNECTOR_MAX_HTTP_HEADER_SIZE
static final String CONNECTOR_MAX_HTTP_HEADER_SIZE
The maximum HTTP header size.- See Also:
- Constant Field Values
-
CUSTOM_VALVE
static final String CUSTOM_VALVE
Custom valves defined as properties separated by|
Maven example:
<cargo.tomcat.valve.stuckthread>
className=org.apache.catalina.valves.StuckThreadDetectionValve|
threshold=60
</cargo.tomcat.valve.stuckthread>- See Also:
- Constant Field Values
-
DEPLOY_UPDATE
static final String DEPLOY_UPDATE
Tomcat Manager update parameter when doing a deploy. Setting to true allows deploy without doing an explicit undeploy of existing web-app first.- See Also:
- Constant Field Values
-
UNDEPLOY_ALL_VERSIONS
static final String UNDEPLOY_ALL_VERSIONS
Tomcat Manager update parameter when doing an undeploy. Setting to true removes all versions when undeploying.- See Also:
- Constant Field Values
-
EMBEDDED_OVERRIDE_JAVA_LOGGING
static final String EMBEDDED_OVERRIDE_JAVA_LOGGING
Whether to override the Java logging in the embedded container.- See Also:
- Constant Field Values
-
-