I am working with grails version 2.5.4. My application is running fine for me but I can't get any change or update if I change my controller code. I am using Intellij Idea 14. When I run my application my code is as below:
def index() {
render "Hello world..."
}
Then after I change my code as below:
def index() {
render "Hello world...Update"
}
I can't get update details on render with "Hello world...Update" text
you need put in your config.groovy file below configuration set reload gsp to true.
For more details:
http://mrhaki.blogspot.in/2015/11/grails-goodness-enable-hot-reloading.html