Definition
Properties to configure a container (request port, shutdown port, logging level, threads, etc)
Explanations
It is possible to set container configuration properties using the Cargo API. These properties are applied to a Configuration.
There are 2 kinds of properties:
- General properties
- Container-specific properties. See each container's page for a list of the custom properties it supports.
General properties:
Property name |
Java constant to use |
Valid values |
Description |
Example |
|---|---|---|---|---|
cargo.servlet.port |
ServletPropertySet.PORT |
integer |
Port on which the Servlet/JSP container will listen to |
"8280" |
cargo.hostname |
GeneralPropertySet.HOSTNAME |
string |
Host name on which the container will listen to |
"myserver" |
cargo.logging |
GeneralPropertySet.LOGGING |
"low", "medium" or "high" |
Level representing the quantity of information we wish to log |
"medium" |
Example using the Java API
Starting Tomcat 5.x on port 8081:
Example using the Ant tasks
Starting Tomcat 5.x on port 8081:
Example using the Maven 2 plugin
Starting Tomcat 5.x on port 8081: