5
votes
shortcut for creating a Map from a List in groovy?
Check out "inject". Real functional programming wonks call it "fold".
columns.inject([:]) { memo, entry ->
memo[entry.name] = entry.val
return memo
}
A …
1
vote
Grails 1.0.3 console reports ‘premature end of file’
Upgrading to a 1.0.4 snapshot is probably the best way to deal with this issue. Check out the instructions under "Grails Development Builds" at …
0
votes
How to pipe stdout from a groovy method into a string
I'm not sure what you mean by "appending the output to a string", but you can print to standard out using "print" or "println".
…
7
votes
Hidden features of Groovy?
Using hashes as pseudo-objects.
def x = [foo:1, bar:{-> println "Hello, world!"}]
x.foo
x.bar()
Combined with duck typing, you can go a long way with this appro …
-1
votes
Hidden features of Groovy?
Argument reordering with implicit arguments is another nice one.
This code:
def foo(Map m=[:], String msg, int val, Closure c={}) {
[...]
}
Creates all t …
1
vote
How to work around a potential performance issue when using a Grails hasMany relation?
There is no order ensured by Hibernate/GORM in the default mapping. Therefore, it doesn't have to load elements from the database in order to do the sorting. You will have your hands on a bunch o …
