groovy&grails 初识

groovy 安装

1.下载

http://groovy.codehaus.org/Download

DownloadWindows-Installer:BinaryRelease

即可

2.配置环境

JAVA_HOME=../java

在安装的时候你可以选择自动设置环境变量,不过应当注意环境变量的默认安装只设置了用户环境变量,应当把系统环境变量也选择上。

3.测试

cmd

xx>groovysh

显示

C:\DocumentsandSettings\lht>groovysh

Let'sgetGroovy!

================

Version:1.1-beta-2JVM:1.6.0_02-b06

Type'exit'toterminatetheshell

Type'help'forcommandhelp

Type 'go' to execute the statements

groovy> 1+2groovy> go

===> 3

groovy>

grails 安装

1. 下载 http://grails.org/Download

2.解压../grails

3.设置环境变量

GRAILS_HOME=../gails

PATH=%GRAILS_HOME%/bin

4.测试

cmd

>grails 

相关书籍:

Groovy.in.Action

The.Definitive.Guide.to.Grails.Dec.2006

 

相关推荐