Grails auto-reloading new controller actions
问题 I've created new Grails 2.4.3 project created TestController set grails.reload.enabled = true in BuildConfig.groovy run application with grails -reloading run-app My controller action code: def index() { render "test" } When I change the string test to test2 - I see in console (in Eclipse): .................. |Compiling 1 source files And after reloading page I see test2 - ok. But when I try to add new method: def test3() { render "test3" } I see: Why? Why there isn't even the url? Example -