The Paketo Apache Tomcat Buildpack is a Cloud Native Buildpack that contributes Apache Tomcat and Process Types for WARs.
This buildpack will participate if all of the following conditions are met
$BP_JAVA_APP_SERVERistomcator if$BP_JAVA_APP_SERVERis unset or empty and this is the first buildpack to provide a Java application server.<APPLICATION_ROOT>/WEB-INFexistsMain-Classis NOT defined in the manifest
The buildpack will do the following:
- Requests that a JRE be installed
- Contribute a Tomcat instance to
$CATALINA_HOME - Contribute a Tomcat instance to
$CATALINA_BASE- Contribute
context.xml,logging.properties,server.xml, andweb.xmltoconf/ - Contribute Access Logging Support, Lifecycle Support, and Logging Support
- Contribute external configuration if available
- Contribute
- Contributes
tomcat,task, andwebprocess types
When this buildpack runs on the Tiny stack, which has no shell, the following notes apply:
- As there is no shell, the
catalina.shscript cannot be used to start Tomcat - The Tomcat Buildpack will generate a start command directly. It does not support all the functionality in
catalina.sh. - Some configuration options such as
bin/setenv.shand settingCATALINA_*environment variables, will not be available. - Tomcat will be run with
umaskset to0022instead of thecatalina.shprovided default of0027
| Environment Variable | Description |
|---|---|
$BP_JAVA_APP_SERVER |
The application server to use. It defaults to `` (empty string) which means that order dictates which Java application server is installed. The first Java application server buildpack to run will be picked. |
$BP_TOMCAT_CONTEXT_PATH |
The context path to mount the application at. Defaults to empty (ROOT). |
$BP_TOMCAT_EXT_CONF_SHA256 |
The SHA256 hash of the external configuration package |
$BP_TOMCAT_ENV_PROPERTY_SOURCE_DISABLED |
When true the buildpack will not configure org.apache.tomcat.util.digester.EnvironmentPropertySource. This configuration option is added to support loading configuration from environment variables and referencing them in Tomcat configuration files. |
$BP_TOMCAT_EXT_CONF_STRIP |
The number of directory levels to strip from the external configuration package. Defaults to 0. |
$BP_TOMCAT_EXT_CONF_URI |
The download URI of the external configuration package |
$BP_TOMCAT_EXT_CONF_VERSION |
The version of the external configuration package |
$BP_TOMCAT_VERSION |
Configure a specific Tomcat version. This value must exactly match a version available in the buildpack so typically it would configured to a wildcard such as 9.*. |
BPL_TOMCAT_ACCESS_LOGGING_ENABLED |
Whether access logging should be activated. Defaults to inactive. |
The artifacts that the repository provides must be in TAR format and must follow the Tomcat archive structure:
<CATALINA_BASE>
└── conf
├── context.xml
├── server.xml
├── web.xml
├── ...
When the Environment Property Source is configured, configuration for Tomcats configuration files can be loaded from environment variables. To use this feature, the name of the environment variable must match the name of the property.
The buildpack optionally accepts the following bindings:
| Key | Value | Description |
|---|---|---|
<dependency-digest> |
<uri> |
If needed, the buildpack will fetch the dependency with digest <dependency-digest> from <uri> |
This buildpack is released under version 2.0 of the Apache License.