Tagged Questions
Groovy is an object-oriented programming language for the Java platform. It is a dynamic language with features similar to those of Python, Ruby, Perl, and Smalltalk. It can be used as a scripting language for the Java Platform.
178
votes
5answers
37k views
Scala vs. Groovy vs. Clojure
Can someone please explain the major differences between Scala, Groovy and Clojure. I know each of these compiles to run on the JVM but I'd like a simple comparison between them.
41
votes
17answers
5k views
Is Grails (now) worth it?
I know this is a duplicate, however, the Grails world has moved on considerably since that question was asked more than a year ago, as has the IDE support in Eclipse, so please don't just blindly ...
36
votes
4answers
12k views
What are the key differences between Scala and Groovy?
On the surface Groovy and Scala look pretty similar, aside from Scala being statically typed, and Groovy dynamic.
What are the other key differences, and advantages each have over the other?
How ...
36
votes
16answers
3k views
Hidden features of Groovy?
It seems like Groovy was forgotten in this thread so I'll just ask the same question for Groovy.
Try to limit answers to Groovy core
One feature per answer
Give an example and short description of ...
35
votes
16answers
14k views
Best IDE for Grails/Groovy? [closed]
I am starting a project with Grails since I already use Eclipse, it was my first choice. But I don“t think its good enough, had some problems and the plugging is poor in functionalities.
Anyone ...
23
votes
11answers
5k views
Why would one use Groovy over Java?
What benefits does Groovy offer over the use of Java other than more complicated syntax?
22
votes
10answers
599 views
Catching typos in scripting languages
If your scripting language of choice doesn't have something like Perl's strict mode, how are you catching typos? Are you unit testing everything? Every constructor, every method? Is this the only way ...
21
votes
12answers
2k views
What does it mean for a programming language to be “on rails”?
I'm currently working with Groovy and Grails. While Groovy is pretty straight-forward since it's basically Java, I can't say I grok Grails. I read that Groovy is to Grails as Ruby is to Ruby on Rails, ...
19
votes
3answers
643 views
Using JPA domain classes in Grails
I want to use a JPA domain model in an application developed using the latest Grails milestone (2.0.0.M1). The JPA domain classes are in the src\java directory of the application.
Based on this blog ...
19
votes
3answers
6k views
Are there any good tutorials for using sitemesh in a grails application?
I'm a pretty experienced Grails developer, but most of my experience has been with using grails for serving up JSON/XML to a flex app and some relatively simple HTML websites.
I've been diving deeper ...
18
votes
5answers
1k views
Machine learning challenge: diagnosing program in java/groovy (datamining, machine learning)
I'm planning to develop program in Java which will provide diagnosis. The data set is divided into two parts one for training and the other for testing. My program should learn to classify from the ...
18
votes
10answers
11k views
Groovy vs Scala [vs JRuby vs Clojure vs Jython]
I'm planning to broaden my perspectives in JVM platform, and I've got a dilemma: what should I learn first? Could you please explain, what are the advantages of Groovy, Scala and other languages for ...
18
votes
5answers
1k views
Are there compelling reasons not to use Groovy?
I'm developing a LoB application in Java after a long absence from the platform (having spent the last 8 years or so entrenched in Fortran, C, a smidgin of C++ and latterly .Net).
Java, the language, ...
18
votes
5answers
4k views
Groovy: what's the purpose of “def” in “def x = 0”?
In the following piece of code (taken from the Groovy User Guide), why prefix the assignment with the keyword def ?
def x = 0
def y = 5
while ( y-- > 0 ) {
println "" + x + " " + y
x++
}
...
17
votes
13answers
646 views
Common programming mistakes for Groovy and Grails developers to avoid? [closed]
I've found the "common programming mistakes for x" to be very informative. So what mistakes should groovy and grails developers avoid?
17
votes
4answers
495 views
Is Groovy syntax an exact superset of Java syntax?
Being a Java programmer, I don't really have a Groovy background, but I use Groovy a lot lately to extend Maven (using GMaven). So far, I could use all the Java code I need in Groovy with the added ...
17
votes
6answers
5k views
Groovy advantages over Jython or Jruby?
Why would I choose to use Groovy when I could use Jython or Jruby? Does the language provide any inherent advantages to make up for the fact that Jython and Jruby skills are applicable to their parent ...
17
votes
3answers
6k views
Best pattern for simulating “continue” in Groovy closure
It seems that Groovy does not support break and continue from within a closure. What is the best way to simulate this?
revs.eachLine { line ->
if (line ==~ /-{28}/) {
// continue ...
15
votes
7answers
4k views
shortcut for creating a Map from a List in groovy?
I'd like some sorthand for this:
Map rowToMap(row) {
def rowMap = [:];
row.columns.each{ rowMap[it.name] = it.val }
return rowMap;
}
given the way the GDK stuff is, I'd expect to be ...
14
votes
4answers
8k views
Groovy String to int
I have a String that represents an integer value and would like to convert it to an int. Is there a groovy equivalent of Java's Integer.parseInt(String)?
14
votes
4answers
1k views
How stable is the Groovy language?
We're writing a large production system in Java, and I'm considering whether or not we can write some of the components in one of the JVM-based dynamic languages. Groovy appears to be the best choice ...
14
votes
12answers
3k views
How popular is Groovy/Grails in the corporate world?
Are there any figures for its adoption in corporate environments? Does anyone know of large corporations that have adopted it for projects?
14
votes
19answers
13k views
Python vs Groovy vs Ruby? (based on criteria listed in question)
Considering the criteria listed below, which of Python, Groovy or Ruby would you use?
Criteria (Importance out of 10, 10 being most important)
Richness of API/libraries available (eg. maths, ...
13
votes
3answers
499 views
am i making this too complicated (Image rotation)?
I have some server code that is generating thumbnails when an image is uploaded. The issue is that when the image was taken and the camera/device was rotated, the thumbnails are rotated, even though ...
13
votes
2answers
2k views
Grails: Templates vs TagLibs
In Grails, there are two mechanisms for modularity in the view layers : template and taglib.
While I am writing my own Grail app, I am often facing the same question when I need to write an UI ...
12
votes
4answers
238 views
GORM for Rest (Grails)?
I am doing some research on Grails and writing about what the future holds for it..
Something interesting jumped out in the RoadMap (http://grails.org/Roadmap)
GORM for REST
Anyone with more ...
12
votes
9answers
3k views
Comparison of Groovy and Scala against Java [closed]
I have recently come across the languages Groovy and Scala which are built on the JVM. But I dont know much beyond that. Are those languages going to overtake Java at some point? Do these languages ...
12
votes
9answers
2k views
Best IDE for Grails 1.1.X development
I've been on a frustrating quest to find an IDE which provides reasonable support for Grails 1.1 development. My minimum requirements are:
Supports running tests within the IDE
Supports debugging ...
12
votes
7answers
4k views
Troubleshooting Grails/Groovy memory leaks?
I've got a Grails application that does a fairly decent amount of domain object creation and destruction, and it seems to run out of PermGen space at a very, very rapid rate. I've done the usual ...
12
votes
5answers
2k views
Valid Java code that is NOT valid Groovy code?
Most Java code is also syntactically valid Groovy code. However, there are a few exceptions which leads me to my question:
Which constructs/features in Java are syntactically invalid in Groovy? ...
12
votes
13answers
6k views
Rails or Grails?
Grails vs Rails. Which has better support? And which one is a better choice to develop medium size apps with? Most importantly which one has more plug-ins?
12
votes
10answers
2k views
What are some advantages of duck-typing vs. static typing?
I'm researching and experimenting more with Groovy and I'm trying to wrap my mind around the pros and cons of implementing things in Groovy that I can't/don't do in Java. Dynamic programming is still ...
11
votes
6answers
3k views
GUI in Scala/Groovy/Clojure
Last time I had to deal with Java was 2005 and I forgot almost everything about it since then.
Today I need to build a GUI app on the top of Java. I guess it is better to use one of ...
11
votes
2answers
28k views
Hibernate: Automatically creating/updating the db tables based on entity classes
I have the following entity class (in Groovy):
import javax.persistence.Entity
import javax.persistence.Id
import javax.persistence.GeneratedValue
import javax.persistence.GenerationType
@Entity
...
10
votes
2answers
1k views
Grails command object data binding
Grails has very good support for binding request parameters to a domain object and it's associations. This largely relies on detecting request parameters that end with .id and automatically loading ...
10
votes
2answers
230 views
What are the pros & cons of functional testing frameworks for a new grails application?
I've got analysis paralysis looking at all the different functional testing options for a new grails (v1.3.4) application. I've looked at
WebDriver/Selenium (which I've used before)
WebTest/Canoo
...
10
votes
6answers
832 views
Looking for a JVM language without the cruft, should I pick Scala, Groovy, or something else? [closed]
I've been programming in Java for the last few years, but due to disappointment with the current state of the language I'd like to switch to another JVM language with all the goodies of dynamic ...
10
votes
4answers
727 views
Considering moving from Java/Spring MVC to Grails
I'm currently using Java & Spring (MVC) to create a webapp, and I'm considering moving to Grails. I'd appreciate feedback/insight on the following:
I have multiple application contexts in the ...
10
votes
1answer
4k views
Groovy load .csv files
How to read and import .csv file in groovy on grails. I have .csv file with data and
need to import in to db using user interface .
thanks in advance,
srinath
10
votes
4answers
272 views
Explicit typing in Groovy: sometimes or never?
[Later: Still can't figure out if Groovy has static typing (seems that it does not) or if the bytecode generated using explicit typing is different (seems that it is). Anyway, on to the question]
One ...
10
votes
2answers
240 views
Substituting Groovy for Java Little By Little
I have been checking out Groovy a bit and I feel that moving a Java program to Groovy little by little -- grabbing a class and making it a Groovy class, then converting the method guts a bit at a time ...
10
votes
2answers
5k views
Maven compile mixed Java + Groovy 1.7 project, using gmaven-plugin
As per the top two answers here I'm trying to compile a mixed Java 6 + Groovy project with Maven, using the GMaven-plugin from org.codehaus.gmaven. Up untill yesterday we were using the old 1.6.0 ...
10
votes
9answers
4k views
Groovy and Grails book [closed]
What a the best books for learning Groovy and Grails for an experienced Java developer?
10
votes
3answers
3k views
How can I return a 404/50x status code from a Grails Controller?
I have a controller that needs to return a 404 page and status code on certain conditions. I can't seem to find out how to do this in Grails. A coworker recommended this method:
...
10
votes
4answers
2k views
Can I configure Grails with no datasource?
I have a Grails app that loads its data from xml files and delivers rss feeds via rome. I don't have any domain classes and my app has no datasource. I don't want Grails to load an in memory hsql db ...
10
votes
6answers
4k views
Groovy way to dynamically invoke a static method
I know in Groovy you can invoke a method on a class/object using a string. For example:
Foo."get"(1)
/* or */
String meth = "get"
Foo."$meth"(1)
Is there a way to do this with the class? I have ...
10
votes
2answers
644 views
Documenting taglibs (or closures in general) in Groovy/Grails
I am writing my first taglib as part of a plugin and I would like to document it. Adding javadoc (is there any place that documents groovydoc or is it really the same thing?) doesn't seem to work for ...
10
votes
4answers
4k views
integrating Grails and GWT
GWT seems like a really nice technology for Java developers who don't like (or don't know) HTML/JS/CSS to build rich web interfaces. On the server-side Grails also looks really nice, it's often ...
10
votes
6answers
2k views
Best free resources to learn Groovy/Grails
What are the best free resources that I can give someone to learn Groovy/Grails? Blogs, tutorials, sample code, sample apps, or presentations would all be helpful.
10
votes
4answers
8k views
How to check if element in groovy array/hash/collection/list?
How do I figure out if an array contains an element?
I thought there might be something like [1,2,3].includes(1) which would evaluate as 'true'