restart_tomcat
Restarts Tomcat server processes for Gradle-based applications, allowing controlled stop and start operations with optional force termination. Simplifies server management in development environments.
Instructions
Stop and start Tomcat
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | Force termination during stop | |
gradle_command | No | Gradle command for restart (default: appRun) |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"default": false,
"description": "Force termination during stop",
"type": "boolean"
},
"gradle_command": {
"description": "Gradle command for restart (default: appRun)",
"type": "string"
}
},
"type": "object"
}