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
|
| SamplesA 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]

9 Comments
Hide/Show CommentsApr 23, 2008
Vimal Kansal
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:
Am I missing something?
Thanks
Vimal
Apr 23, 2008
Viktor Hugo Morales
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)Apr 23, 2008
Paul King
Vimal, try this:
Oct 13, 2008
jamesqiu
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 !
Oct 14, 2008
Guillaume Laforge
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.
Oct 31, 2008
jamesqiu
Thanks glaforge. I've fixed my Groovy 1.6b2 with your method. Open source is great!
Apr 08, 2009
redstun
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)
Sep 24, 2009
Patricia Shannon
(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.
Sep 26, 2009
Patricia Shannon
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?