Tagged Questions
The expandometaclass tag has no wiki summary.
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 ...
3
votes
1answer
78 views
Where to properly initialize Groovy metaclasses?
In a Groovy application, if you want to initialize metaclasses, where is the best place to put those initializations? In Grails apps, I've used the Bootstrap.groovy file. Is there something similar ...
2
votes
1answer
151 views
In Groovy, When Does It Makes Sense To Use An Expando vs the 'as' operator and Closures?
Groovy is a wonderful language that offers lots of different choices.
In thinking about unit tests, when does it make sense to use an Expando
object vs. the "as" operator with closures?
...
0
votes
1answer
84 views
Getting org.codehaus.groovy.control.MultipleCompilationErrorsException using gmaven plugin
This is my sample program, while compiling using mvn it throws me the compilation error, i'm trying to add a Static Methods using ExpandoMetaClass -
@Singleton
class ThrowError {
...
0
votes
1answer
27 views
using ExpandoMetaclass in groovy print result and null value also
the sample progame when i try to run using the expandometaclass technique it give me two output one the desired result second one "null" as output, from where null is picked up ?
class testA {
...
0
votes
1answer
35 views
ExpandoMetaClass - Static Methods + singleton + overloaded functions
Using ExpandoMetaClass Static Methods can be added dynamically, how can i use this ExpandoMetaClass in Singleton object, with overloaded static function in it, let say the sample program need to be ...
0
votes
2answers
223 views
Passing delegate through nested closures in Groovy
I am creating a builder which accepts Groovy closures as markup. However I am having trouble catching method calls with nested closures.
Closure nested = {
foo () //will throw missingMethod ...
0
votes
1answer
170 views
How to add a new closure to a class in groovy
From Snipplr
Ok here is the script code, in the comments is the question and the exception thrown
class Class1 {
def closure = {
println this.class.name
println ...
0
votes
1answer
826 views
Grails behavior difference between run-app and run-war
I'm relatively new to Groovy and Grails and am trying them out in my spare time. I've got a small test Grails application that I'm able to run fine using grails run-app, but grails run-war results in ...
0
votes
1answer
2k views
Groovy expando metaclass
I've developed a Class that has some methods that augment Integer, it mainly lets me do this:
def total = 100.dollars + 50.euros
Now I have to extend Integer.metaClass doing something like this:
...