It seems that in Grails 2.3 the reloading is no longer the default
In Grails 2.3 the reloading agent is no longer on the build system
path unless you pass the -reloading flag to the grails command:
grails -reloading run-app
However, you can enable forking in your buildConfig using the following configuration:
forkConfig = [maxMemory: 1024, minMemory: 64, debug: false, maxPerm: 256]
grails.project.fork = [
test: forkConfig, // configure settings for the test-app JVM
run: forkConfig, // configure settings for the run-app JVM
war: forkConfig, // configure settings for the run-war JVM
console: forkConfig // configure settings for the Swing console JVM ]
More information : Forked Execution and the Reloading Agent
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…