void |
TomcatManager.deploy(String path,
File war) |
Deploys the specified WAR as a HTTP PUT to the specified context path.
|
void |
TomcatManager.deploy(String path,
File war,
boolean update) |
Deploys the specified WAR as a HTTP PUT to the specified context path, optionally undeploying
the webapp if it already exists.
|
void |
TomcatManager.deploy(String path,
File war,
boolean update,
String tag) |
Deploys the specified WAR as a HTTP PUT to the specified context path, optionally undeploying
the webapp if it already exists and using the specified tag name.
|
void |
TomcatManager.deploy(String path,
String version,
File war,
boolean update,
String tag) |
Deploys the specified WAR as a HTTP PUT to the specified context path, optionally undeploying
the webapp if it already exists and using the specified tag name.
|
void |
TomcatManager.deploy(String path,
URL war) |
Deploys the specified WAR as a URL to the specified context path.
|
void |
TomcatManager.deploy(String path,
URL war,
boolean update) |
Deploys the specified WAR as a URL to the specified context path, optionally undeploying the
webapp if it already exists.
|
void |
TomcatManager.deploy(String path,
URL war,
boolean update,
String tag) |
Deploys the specified WAR as a URL to the specified context path, optionally undeploying the
webapp if it already exists and using the specified tag name.
|
void |
TomcatManager.deployContext(String path,
URL config) |
Deploys the specified context XML configuration to the specified context path.
|
void |
TomcatManager.deployContext(String path,
URL config,
boolean update) |
Deploys the specified context XML configuration to the specified context path, optionally
undeploying the webapp if it already exists.
|
void |
TomcatManager.deployContext(String path,
URL config,
boolean update,
String tag) |
Deploys the specified context XML configuration to the specified context path, optionally
undeploying the webapp if it already exists and using the specified tag name.
|
void |
TomcatManager.deployContext(String path,
URL config,
URL war) |
Deploys the specified context XML configuration and WAR as a URL to the specified context
path.
|
void |
TomcatManager.deployContext(String path,
URL config,
URL war,
boolean update) |
Deploys the specified context XML configuration and WAR as a URL to the specified context
path, optionally undeploying the webapp if it already exists.
|
void |
TomcatManager.deployContext(String path,
URL config,
URL war,
boolean update,
String tag) |
Deploys the specified context XML configuration and WAR as a URL to the specified context
path, optionally undeploying the webapp if it already exists and using the specified tag
name.
|
TomcatDeployableStatus |
TomcatManager.getStatus(String path) |
Return the status of the webapp at the specified context path.
|
TomcatDeployableStatus |
TomcatManager.getStatus(String path,
String version) |
Return the status of the webapp at the specified context path and version.
|
protected void |
TomcatManager.invoke(String path) |
Invokes Tomcat manager with the specified command.
|
protected String |
TomcatManager.invoke(String path,
File fileData) |
Invokes Tomcat manager with the specified command and content data.
|
String |
TomcatManager.list() |
List currently deployed webapps.
|
protected abstract void |
AbstractTomcatManagerDeployer.performUndeploy(Deployable deployable) |
Performs undeployment of deployable.
|
protected void |
AbstractTomcatManagerInstalledLocalDeployer.performUndeploy(Deployable deployable) |
Performs undeployment of deployable.
|
void |
TomcatManager.reload(String path) |
Reloads the webapp at the specified context path.
|
void |
TomcatManager.remove(String path) |
Removes the webapp at the specified context path.
|
void |
TomcatManager.start(String path) |
Starts the webapp at the specified context path.
|
void |
TomcatManager.stop(String path) |
Stops the webapp at the specified context path.
|
void |
TomcatManager.undeploy(String path) |
Undeploys the webapp at the specified context path.
|
void |
TomcatManager.undeploy(String path,
String version) |
Undeploys the webapp at the specified context path.
|