What is Groovy? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T01:15:23Zhttp://stackoverflow.com/feeds/question/287598http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/287598/what-is-groovy7What is Groovy?Kevin2008-11-13T17:27:40Z2008-11-13T18:27:29Z
<p>I have heard some things about Groovy from several different sources. One said Groovy is a great test harness for Java. Another said Groovy is Java's answer to Ruby. I am not sure what I've heard that is correct.</p>
<p>What is Groovy and <strong>why should I learn more about it</strong>? Obviously I have a vague idea about groovy, but the emphasis is on the why.</p>
http://stackoverflow.com/questions/287598/what-is-groovy/287627#28762716Answer by Jon Skeet for What is Groovy?Jon Skeet2008-11-13T17:36:03Z2008-11-13T17:48:47Z<p><a href="http://en.wikipedia.org/wiki/Groovy_(programming_language)" rel="nofollow">Groovy</a> is a dynamic language which runs on the Java platform. It has Java-like syntax, although it's not fully compatible with Java. (i.e. many Java programs are valid Groovy code, but not all.)</p>
<p>For more information, can I recommend <a href="http://rads.stackoverflow.com/amzn/click/1932394842" rel="nofollow">Groovy in Action</a>? Not that I'm biased or anything ;)</p>
<p>As for why you should learn it - if you know Java and you're interested in either scripting (it <em>can</em> be used for scripting, but doesn't have to be) or dynamic languages, it's a good starting point as you can keep a familiar syntax.</p>
<p>I first used it as an easy language to integrate into Ant - our Ant scripts didn't have quite enough power, and a bit of Groovy helped a lot.</p>
http://stackoverflow.com/questions/287598/what-is-groovy/287707#2877077Answer by Rob for What is Groovy?Rob2008-11-13T17:58:09Z2008-11-13T17:58:09Z<p>Other people have covered the "what", so I'll just cover the "why":</p>
<p>Consider Groovy if you're looking for a scripting language with dynamic language features and must deploy your applications on a JVM. You might also want to look into JRuby and Jython as alternatives, although Groovy is more convenient if you're planning to frequently utilize Java libraries in your code.</p>
http://stackoverflow.com/questions/287598/what-is-groovy/287718#2877183Answer by orip for What is Groovy?orip2008-11-13T18:02:38Z2008-11-13T18:02:38Z<p>Groovy is great for <a href="http://groovy.codehaus.org/Unit+Testing" rel="nofollow">writing unit tests</a> for existing Java code.</p>
<p>Testing is an area where its advantages really shine, and where making experiments (like trying a new language) is low risk.</p>
<p>Also check out <a href="http://grails.org/" rel="nofollow">Grails</a> for web development.</p>
http://stackoverflow.com/questions/287598/what-is-groovy/287779#2877791Answer by rich for What is Groovy?rich2008-11-13T18:27:29Z2008-11-13T18:27:29Z<p>Groovy is a dynamically typed language that runs on the Java platform and includes some features that a lot of people wish were in Java (ex: closures). One nice thing about Groovy is that it reduces the amount of code needed to do common tasks such as parsing XML files and accessing databases. While learning Groovy you can always mix in straight Java code. This is nice since it allows you to ease into Groovy at your own pace while delivering functional code. If you've been using Java for a while I think you'll appreciate the simplicity of using Groovy since you can program more functionality using less keystrokes. The inclusion of closures was a big selling point for me. One word of caution: if you use Groovy for production code you should make sure there is descent test coverage (since Groovy is a dynamic language). Even if you decide not to use Groovy, it's not a huge time investment to learn and experiment a bit.</p>