创建应用程序
要创建 Grails 应用程序,请使用 grails create-app
命令。以下命令在当前目录中创建名为 myapp
的 Grails 应用程序:
grails create-app fancy-app
运行它,就像访问新创建的应用程序目录一样简单:
cd fancy-app
然后
grails run-app
// in order to run the app on a different port, e.g. 8888, use this instead
grails run-app -port 8888
// in order to run the app with a secure communication
grails run-app -https