Warning:
JavaScript is turned OFF. None of the links on this page will work until it is reactivated.
If you need help turning JavaScript On, click here.
このコンセプトマップに関連する情報: 4.create controller, cmd 移動 application folder, application folder/grails-app/ controllers/HelloController.groovy 中身 class HelloController { def index = { } }, grails run-app 結果 http://localhost:8080/helloworld/hello, class HelloController { def index = { } } 変更 class HelloController { def index = {render "Hello World !" } }, cmd 移動 application folder, cmd run grails run-app, cmd create grails create-controller hello, cmd 生成される application folder/grails-app/ controllers/HelloController.groovy