NOTE: In this tutorial, the Groovy-Eclipse plugin is running on Eclipse 3.5.1. The user interface and task flow may vary somewhat in Eclipse 3.4.2.
GETTING HELP – If you have problems, send a message to http://xircles.codehaus.org/lists/eclipse-plugin-user@groovy.codehaus.org.
Do
See
1
In Eclipse, click File > New > Groovy Project.
If Groovy Project does not appear in the drop-down list, then select Other and search for Groovy Project in the dialog box.
|
|
2
In the New Groovy Project wizard, type a name in the Project Name box, and clickNext.
GroovyEclipse creates the project and a folder structure for it. A folder with the same name as the project appears in the Package Explorer. The project directory contains a src and a bin folder, each empty.
|
|
3
The tabs and options in the Build Settingswindow are identical to those in the the Java Development Tool (JDT).
Click Finish to proceed without customizing the build settings.
For information about build options, see Eclipse help for the New Java Project Wizard; it applies to Groovy projects as well.
|
|
4
Select the project in the Package Explorer, and click File > New > Groovy Class.
|
|
5
In the Groovy Class wizard, type a name for the class in the Name box, a name for the package in the Package field, and clickFinish to create the class and package.
If you type the name of an existing package in thePackage field, the class is created there.
Just like in the JDT, you can create a package as a separate step with File > New > Package, or when you use the create the first class
|
|
6
GroovyEclipse creates the new class. The new class, Greetings.groovy in this example, is listed in the Package Explorer, and opened in the editor.
Note that, as generated by GroovyEclipseGreetings.groovy already contains the package statement and class declaration.
|
|
7
Paste this code into the file:
static void main(def args) { def mygreeting = "Hello World" println mygreeting
}
|
|
8
Right click anywhere in the editor and thenRun > Run As > Groovy Script or Java Application.
Running as an Application will launch the compiled *.class files, whereas running as aScript will launch the uncompiled *.groovy files. In general, the results will be the same, but there are some subtle differences between the two.
|
|
9
The greeting is issued in the Console tab.
|
|
分享到:
相关推荐
groovy eclipse plugin2groovy eclipse plugin2groovy eclipse plugin2groovy eclipse plugin2groovy eclipse plugin2groovy eclipse plugin2groovy eclipse plugin2
4. **调试支持**:可以使用Eclipse的调试器来调试Groovy程序,包括设置断点、查看变量值等功能。 5. **构建工具集成**:如Gradle、Grails等构建工具的集成,便于项目管理和构建。 通过Eclipse Groovy插件,你可以更...
1. **新建 Java 项目**:在 Eclipse 中,通过 File > New > Java Project 菜单创建一个新的 Java 项目。 2. **给项目添加 Groovy 属性**:在项目上右键点击,选择 Properties,然后选择 Project Facets。在 Project...
Eclipse 插件 Grails(Groovy)是一个强大的开发工具,它使得在Eclipse环境中进行Groovy和Grails应用的开发变得更为便捷。Groovy是一种动态、面向对象的编程语言,而Grails则是一个基于Groovy的开源Web应用框架,...
重启后,你可以在Eclipse中创建新的Groovy项目,编辑Groovy源代码,并利用内置的Groovy编译器进行构建和调试。 Groovy Eclipse插件的特性包括: - **语法高亮**:提供Groovy语言的语法着色,使代码更易读。 - **...
Groovy是一种动态、灵活的编程语言,它是Java平台上的一个扩展,可以无缝集成到Java项目中。Groovy的语法简洁,支持面向对象编程、函数式编程,并提供了许多现代语言特性,如闭包和动态类型。这使得Groovy成为快速...
Groovy-Eclipse插件是专为Eclipse集成开发环境(IDE)设计的一个扩展,它提供了对Groovy编程语言的强大支持。这款插件适用于Eclipse 3.5版本,这意味着它可以与该版本的Eclipse无缝集成,让开发者在Eclipse 3.5环境...
Groovy是一种动态、灵活的编程语言,它是Java平台上的一个扩展,旨在提高开发者的生产力。在Eclipse集成开发环境中,Groovy插件是用于支持...如果你是Eclipse 4.7的用户并且热衷于Groovy,那么这个插件绝对值得拥有。
1. **创建项目结构**:在Eclipse中,你需要创建一个“Plug-in Project”。这个项目会自动生成基础目录结构,包括`src`、`plugin.xml`、`META-INF`等。 2. **定义插件元数据**:`plugin.xml`是插件的核心配置文件,...
groovy eclipse 4.7 插件 离线 groovy eclipse 4.7 插件 离线
GroovyEclipse是一款针对Eclipse集成开发环境的插件,旨在提供对Groovy编程语言的全面支持。Groovy是一种动态、灵活的Java平台语言,它结合了Python、Ruby和Smalltalk等语言的优点,并且与Java无缝集成。在Eclipse中...
在给定的标题"groovy eclipse 4.7 插件 Oxygen 离线安装包"中,"4.7"指的是Eclipse的版本号,这通常代表了Eclipse的Oxygen发布系列,它是一个重要的更新,包含了许多性能改进和新特性。而"Oxygen"是Eclipse IDE的一...
groovy eclipse plugin1groovy eclipse plugin1groovy eclipse plugin1groovy eclipse plugin1groovy eclipse plugin1groovy eclipse plugin1groovy eclipse plugin1groovy eclipse plugin1groovy eclipse plugin1
groovy_eclipse插件
Groovy是一种动态、灵活的编程语言,它是Java平台上的一个扩展,可以无缝集成到Java项目中。Groovy提供了更简洁的语法,使开发者能够更快地编写代码,特别适合于脚本编写、自动化任务以及构建工具。Eclipse是流行的...
同时,由于Groovy与Java的兼容性,你可以在一个项目中同时使用这两种语言,这对于混合开发环境非常有用。 总之,安装Groovy插件是Eclipse用户扩展其开发能力的重要一步。通过以上步骤,你可以在Eclipse中轻松地安装...
在调试方面,Eclipse Groovy插件提供了一个强大的调试器,允许用户设置断点、查看变量值、单步执行代码,以及进行其他常见的调试操作。这对于理解Groovy代码的运行过程非常有帮助。 至于压缩包文件的文件名称列表,...
groovy eclipse plugin2groovy eclipse plugin2groovy eclipse plugin2groovy eclipse plugin2groovy eclipse plugin3
Grails则是一个基于Groovy的开源Web应用框架,它借鉴了Ruby on Rails的设计理念,提供了模型-视图-控制器(MVC)架构模式,简化了开发流程,使开发者能快速创建全功能的Web应用。Grails的特性包括自动化 ORM(对象...
总之,Eclipse Groovy插件2.9.1的离线安装包是一个包含所有必要组件的集合,便于开发者在Eclipse中快速、离线地启用Groovy支持。其核心功能包括源代码编辑、编译、调试和项目管理,极大地提升了Groovy开发的效率和...