注意這個插件只適用於 eclipse
·選擇 New Remote Site
· name 中輸入 Groovy
· URL 中復制上述的 URL 地址
·在 Select the Features to Install 選上 Groovy
·接受 agreement 並按下 next
·如果默認的地址正確則按下 Finish
·下載完畢後點擊 Install 或 Install All
創建 Groovy 工程
·選擇 File
·選擇 Java Project 並按下 next
·在 Project Name 中輸入 GroovyJava
·在 Project Layout 中選擇 Create separate source and output folders 並按下 Finish
·在 Package Explorer 尋找新創建的工程
到目前為止創建的工程中會有一個 src 目錄
· 在 Package Explorer 中
· 點擊 Browse 按鈕來改變 Default Output Folder
這時 Package Explorer 中出現 bin 目錄
在 src 中右鍵創建 groovy class
class GTest {
static void main(args) {
def list = [
運行即可
From:http://tw.wingwit.com/Article/program/Java/hx/201311/26093.html