Skip to content

Commit

Permalink
allow JVM to exit with forked run-app and add new stop-app command to…
Browse files Browse the repository at this point in the history
… stop the background JVM
  • Loading branch information
graemerocher committed Jul 20, 2012
1 parent c792c70 commit bc5c63e
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 4 deletions.
Expand Up @@ -39,6 +39,7 @@ public void run() {
tomcat.stop();
tomcat.destroy();
System.setProperty(TOMCAT_KILL_SWITCH_ACTIVE, "false");
System.exit(0);
} catch (LifecycleException e) {
System.err.println("Error stopping Tomcat: " + e.getMessage());
System.exit(1);
Expand Down
Expand Up @@ -99,6 +99,9 @@ class ForkedTomcatServer extends ForkedGrailsProcess implements EmbeddableServer
} )

t.start()
while(!isAvailable(host, httpPort)) {
sleep 100
}
System.setProperty(TomcatKillSwitch.TOMCAT_KILL_SWITCH_ACTIVE, "true")
}

Expand Down
5 changes: 4 additions & 1 deletion scripts/RunApp.groovy
Expand Up @@ -32,5 +32,8 @@ target('default': "Runs a Grails application") {
else {
runApp()
}
watchContext()
if(!(grailsServer instanceof org.codehaus.groovy.grails.cli.fork.ForkedGrailsProcess)) {
watchContext()
}

}
42 changes: 42 additions & 0 deletions scripts/StopApp.groovy
@@ -0,0 +1,42 @@
/*
* Copyright 2012 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


/**
* Gant script that stops the running forked Grails application if it is running
*
* @author Graeme Rocher
*
* @since 2.2
*/

includeTargets << grailsScript("_GrailsRun")

target('default': "Stops a forked Grails application") {
depends(checkVersion, configureProxy)

try {
grailsConsole.updateStatus "Stopping Grails Server..."
def url = "http://${serverHost ?: 'localhost'}:${serverPort+1}"
grailsConsole.verbose "URL to stop server is $url"
new URL(url).getText(connectTimeout: 10000, readTimeout: 10000)
grailsConsole.updateStatus "Server Stopped"
}
catch(e) {
grailsConsole.updateStatus "Server Stopped"
}

}
4 changes: 1 addition & 3 deletions scripts/_GrailsRun.groovy
Expand Up @@ -58,15 +58,13 @@ ant.path(id: "grails.runtime.classpath", runtimeClasspath)
*/
target(runApp: "Main implementation that executes a Grails application") {
grailsServer = projectRunner.runApp()
startPluginScanner()
}

/**
* Runs the application in dev mode over HTTPS.
*/
target(runAppHttps: "Main implementation that executes a Grails application with an HTTPS listener") {
target(runAppHttps: "Main implementation that executes a Grails application with an HTTPS listener") {
grailsServer = projectRunner.runAppHttps()
startPluginScanner()
}

/**
Expand Down

0 comments on commit bc5c63e

Please sign in to comment.