Skip to end of metadata
Go to start of metadata

Groovy...

  • is an agile and dynamic language for the Java Virtual Machine
  • builds upon the strengths of Java but has additional power features inspired by languages like Python, Ruby and Smalltalk
  • makes modern programming features available to Java developers with almost-zero learning curve
  • provides the ability to statically type check and statically compile your code for robustness and performance
  • supports Domain-Specific Languages and other compact syntax so your code becomes easy to read and maintain
  • makes writing shell and build scripts easy with its powerful processing primitives, OO abilities and an Ant DSL
  • increases developer productivity by reducing scaffolding code when developing web, GUI, database or console applications
  • simplifies testing by supporting unit testing and mocking out-of-the-box
  • seamlessly integrates with all existing Java classes and libraries
  • compiles straight to Java bytecode so you can use it anywhere you can use Java

Experience Groovy 2.1

Groovy 2.1 is the latest major and stable version of the popular alternative language for the JVM.

To learn more about the novelties, make sure to read the detailed release notes. In a nutshell, Groovy 2.1

  • offers full support for the JDK 7 “invoke dynamic” bytecode instruction and API for improved performance,
  • goes beyond conventional static type checking capabilities with a special annotation to assist with documentation and type safety of Domain-Specific Languages 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.


"Groovy is like a super version of Java. It can leverage Java's enterprise capabilities but also has cool productivity features like closures, builders and dynamic typing. If you are a developer, tester or script guru, you have to love Groovy."

 

Samples

A simple hello world script:

def name='World'; println "Hello $name!"

A more sophisticated version using Object Orientation:

class Greet {
  def name
  Greet(who) { name = who[0].toUpperCase() +
                      who[1..-1] }
  def salute() { println "Hello $name!" }
}

g = new Greet('world')  // create object
g.salute()               // output "Hello World!"

Leveraging existing Java libraries:

import static org.apache.commons.lang.WordUtils.*

class Greeter extends Greet {
  Greeter(who) { name = capitalize(who) }
}

new Greeter('world').salute()

On the command line:

groovy -e "println 'Hello ' + args[0]" World

Latest news [more]

Dear all,

I'm pleased to announce the release of Groovy 2.1.5.

Groovy 2.1.5 is a bug fix release of the Groovy 2.1 branch. In particular, it fixes a problem we've encountered with Groovy 2.1.4 where the extension module descriptors were not found in the "all" JAR, which meant that the usual nice GDK methods extensions for XML and other modules were not found by Groovy.

You can download Groovy 2.1.5 in the download area and have a look at the JIRA release notes.

Thanks to all who contributed to this release!

Keep on groovy'ing!

  1. Apr 23, 2008

    Hi,

    I am unable to get the example that you have posted on InfoQ for using the tripple dot notation of variable args list. i.e I cut and pasted the following code

    into groovyconsole and I get the following:

    Exception thrown: org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed, Script14: 1: unexpected token: ... @ line 1, column 21.
    1 error
    
    org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed, Script14: 1: unexpected token: ... @ line 1, column 21.
    1 error
    

    Am I missing something?

    Thanks

    Vimal 

  2. Apr 23, 2008

    Vimal,

    I tried it, but now i get another error:

    groovy.lang.MissingMethodException: No signature of method: java.lang.Integer.size() is applicable for argument types: () values: {}
    	at Script14.sum(Script14:3)
    	at Script14.run(Script14:8)
    
  3. Apr 23, 2008

    Vimal, try this:

  4. Oct 13, 2008

    Oh,in Groovy1.6.0b2,  following line CAN'T run:

    $groovy -e "println 'Hello ' + args[0]" World

    Caught: groovy.lang.MissingPropertyException: No such property: args for class: script_from_command_line
    at script_from_command_line.run(script_from_command_line:1)

    It's just on groovy's HOMEPAGE !

  5. Oct 14, 2008

    James, this is a known problem, and a JIRA issue was raised.

    This regression will be fixed for Groovy 1.6-rc-1.

    Sorry for the inconvenience.

  6. Oct 31, 2008

    Thanks glaforge.  I've fixed my Groovy 1.6b2 with your method. Open source is great!

  7. Apr 08, 2009

    What about shortening the names for things in Groovy? like Maven has the mvn command.

     E.g.

    groovy => gv

    groovyc => gvc

    groovysh => gvsh

    groovlet script => gvp (isn't it sort of  jsp like stuff?)

    ... 

    (then rewrite the old ones to call the new-names for backward compatibility)

  8. Sep 24, 2009


    (9/24/2009 - fixed blog so that the linked entry displays properly in web browser)

    There are times when we need to read a single record at a time from a file.
    Eg., if we want to stop reading a file at a certain point.
    Or when working with more than one file. After comparing records, one might have to read a record from one or the other file, or from both.

    I was not able to find good documentation on how to do this.
    By spending a lot of time searching and experimenting, I was able to find out how to do it.

     see http://patriciashannon.blogspot.com/2009/09/groovy-how-to-read-one-line-at-time.html

     Note that it requires two executions of .readLine for each record, but that is easy to get around, but putting it in a closure, as shown. This would usually be done anyway, to include things like record counts and end-of-file logic. So in a real program, each readALine closure would have two readLine statements.

  9. Sep 26, 2009

    When I put the following in my initialization routine, highValue was undefined elsewhere
         String highValue = '\377'

    So I changed the code to the following two lines, which worked
         String highValue2 = '\377'
         highValue = highValue2

    When I replaced these two lines by the following, it was again undefined elsewhere
         public String highValue = '\377'

    Is there a way to define a global typed variable with a single statement?