19
votes
12answers
1k 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 …
14
votes
4answers
2k 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.
14
votes
4answers
504 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, …
14
votes
12answers
1k 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, …
13
votes
6answers
1k views
Convert datetime in to date
How do I convert a datetime field in Grails to just date, with out capturing the time? I need to do this for comparison with system date.
class Trip
{
String name
String city
Date …
12
votes
7answers
861 views
Best IDE for Grails 1.1.X development
Hi,
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 …
12
votes
6answers
1k 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 …
11
votes
9answers
2k views
Best IDE for Grails/Groovy?
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 …
10
votes
2answers
647 views
SQl Query to Hibernate Query
I have a MYSQL query that I use to retrieve random rows from a table. The query is :
SELECT * FROM QUESTION WHERE TESTID=1 ORDER BY RAND() LIMIT 10;
Now I need to change this query to Hibernate. Did …
10
votes
7answers
632 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 …
8
votes
3answers
541 views
image uploading in grails
hi,
I am new to grails.I am doing web application that uploads the image from client side and it stores that in server.
My Gsp code is:
<g:uploadForm action="saveImage">
<input type="file" …
8
votes
2answers
1k 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 …
7
votes
8answers
760 views
Groovy vs Scala [vs JRuby vs Closure 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 …
7
votes
6answers
730 views
Can you mix the JVM languages? ie: Groovy & Clojure
I understand that you can easily mix groovy&java, clojure&java, whateverJvmLang&java.
Does this also mean I can have clojure and groovy code interact as well? If I use Grails or jRoR, can …
7
votes
2answers
291 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 …
