gradle farmRunDebug
farmRunDebug task starts farm web-apps inplace, in interactive and debug mode.
Each farm web-app gets compiled (if it’s not up-to-date).
If farm configuration overrides inplace property for some web-apps to false
, then each of these web-apps is assembled into WAR-file (if it’s not up-to-date).
Embedded servlet-container starts in separate java process against compiled classes and their dependencies (and, optionally, WAR-files). important: Upon start, the process is in suspended-mode and listens for debugger commands on port 5005.
Upon resume, servlet-container process starts listening for HTTP-requests on port (default 8080).
Gretty waits for the user keypress.
When user presses any key (in the same terminal), servlet-container process shuts down.
Gretty waits for servlet-container process to complete.
Gradle script continues normal execution of tasks.
Note
|
by default this task does not depend on any "war" tasks. It’s only when you override inplace property to false are some projects compiled to WAR-files and farmRun depends on respective "war" tasks. |