- Grails - 2.2.0
- 日常茶飯事
- 2012. 12. 29. 03:55
Grails가 버전이 올라가면서 많은 부분이 바뀌었다.
개발환경에 대화형 모드를 사용했고
자동 완성 기능도 지원한다. Grails 명령어만 지원하는게 아니고, 패키지명에도 지원된다.
HSQLDB 대신 H2를 사용함. 1Database Console 제공
UI도 변경되었음.
기본적으로 jQuery를 사용
그리고 메세지가 한글이 지원된다. 2
- Hello World Example
개발환경에 대화형 모드를 사용했고
자동 완성 기능도 지원한다. Grails 명령어만 지원하는게 아니고, 패키지명에도 지원된다.
HSQLDB 대신 H2를 사용함. 1Database Console 제공
UI도 변경되었음.
기본적으로 jQuery를 사용
그리고 메세지가 한글이 지원된다. 2
- Hello World Example
> grails create-app helloworld
> cd helloworld
> grails
grails> create-controller hello
> cd helloworld
> grails
grails> create-controller hello
grails-app/controllers/helloworld/HelloController.groovy
def index() { render "Hello World!" }
grails> run-appdef index() { render "Hello World!" }
Recent comment