d:\grails-3.3.6
, for example.Java JDK 1.8
to run. https://www.oracle.com/technetwork/java/javase/downloads/index.htmld:\grailsApp
. Type the command grails create-app helloworld
to create a new project named helloworld.D:\grailsApp>grails create-app helloworld
helloworld
directory, and type the command grails
. Grails will download the require library. It might take sometime for download for the first time. After that, we will enter the grails modeD:\grailsApp>cd helloworld D:\grailsApp\helloworld>grails BUILD SUCCESSFUL | Enter a command name to run. Use TAB for completion: grails>
Tab
key. The interesting one would be assemble
, compile
, clean
, run-app
, and stop-app
grails> assemble bug-report clean compile console create-controller create-domain-class create-functional-test create-integration-test create-interceptor create-scaffold-controller create-script create-service create-taglib create-unit-test dependency-report generate-all generate-async-controller generate-controller generate-views gradle help install install-templates list-plugins open plugin-info run-app schema-export shell stats stop-app test-app url-mappings-report grails>