Groovy is an agile dynamic language for the Java Platform that has many of the features that people like so much in languages like Python, Ruby and Smalltalk, making them available to Java developers using a Java-like syntax.
Groovy works cleanly with all existing Java objects and libraries.
Groovy is ideally designed to reach the following purposes :
- developping in a quick, concise and fun way web applications. The Grails project shows you this evidence.
- bringing the power of a scripting language directly into the Java Platform
- writing test cases for unit tests very easy.
- prototyping and productizing real industrial applications
- writing shell scripts easily
Groovy can be used according your kind of application in two main modes :
- traditionnal byte code compiled applications
- purely interpretated scripts
Groovy is powerful thanks to :
- language conceptual enhancements
- Closure support, ie the ability to define piece of executing code handled like any other object
- native syntax for lists and maps
- builder notion, ie ... TBD
- regex operators
- native beans
- operator overloading to simplify working with datatypes Collections and Maps
- Polymorphic iteration and autoboxing
- extension of java objects api
- TBD
- providing of extra very useful libraries/modules
- Groovy Markup for XML, DOM, ...
- Groovy Path expression language
- Groovlets for implementing Servlets easily in simple Groovy scripts
- Ant Scripting
- Groovy Categories allow you to add methods to classes with the "use" keyword
- Groovy Template Engines which are pluggable, simple to use, integrate GPath and compile to bytecode
- Groovy SQL for making SQL more Groovy
Features
- Closure support
- Native syntax for Lists and Maps
- Groovy Markup
- Groovy Path expression language
- Groovlets for implementing Servlets easily in simple Groovy scripts
- Groovy SQL for making SQL more Groovy
- Groovy Beans for simpler syntax for working with beans
- Groovy Template Engines which are pluggable, simple to use, integrate GPath and compile to bytecode
- Groovy Categories allow you to add methods to classes with the "use" keyword
- Ant Scripting
- Regex syntax for neater scripting with regular expressions
- Operator Overloading to simplify working with datatypes Collections and Maps
- Polymorphic iteration and autoboxing
- The Swing-based Groovy Console let you start typing code right away.
- Compiles straight to Java bytecode
- Works cleanly with all existing Java objects and libraries
Getting started
Probably the best way to get started on Groovy is to install a binary distribution and play with it after you've read the quick start introduction.
You can learn Groovy by following the beginners tutorial.
You may want to read the user guide or browse some of the links on the left of this page.
News
The Groovy development team is happy to announce the joint releases of Groovy 1.8.9, 2.0.7, and 2.1.1!
InfoQ interview Groovy project lead Guillaume Laforge about the recent release of Groovy 2.1.
In this interview, the discussion centered around the new features of that release, including coverage of the "invoke dynamic" support, performance, meta-annotations, compiler configuration, and more.
- offers full support for the JDK 7 “invoke dynamic” bytecode instruction and API,
- goes beyond conventional static type checking capabilities with a special annotation to assist with documentation and type safety of DSLs and adds static type checker extensions,
- provides additional compilation customization options,
- features a meta-annotation facility for combining annotations elegantly,
- and provides various other enhancements and minor improvements.
Read more News on the Groovy Blog