2.4 创建Grails应用 - Reference Documentation
Authors: Graeme Rocher, Peter Ledbrook, Marc Palmer, Jeff Brown, Luke Daley, Burt Beckwith
Version: null
2.4 创建Grails应用
To create a Grails application you first need to familiarize yourself with the usage of the Run create-app to create an application:
在创建应用程序之前,先熟悉一下 grails command which is used in the following manner:grails [command name]
grails create-app helloworldThis will create a new directory inside the current one that contains the project. Navigate to this directory in your console:cd helloworld
grails 命令的使用(grails中的命令都在终端中输入,请参考上面的讲解)。通常的方式如下:grails [command name]
grails create-app helloworld系统将会在当前目录下创建一个新的helloworld目录,在终端里边浏览目录的命令如下:cd helloworld

