The expandometaclass tag has no wiki summary.
0
votes
0answers
66 views
How to override GORM count
I am trying to override GORM's count() method for one domain class in grails 1.3.7 (since the default version results in a sequential scan of the whole table of 20m odd records - not particularly ...
2
votes
1answer
135 views
Overriding event closure on Grails GORM domain class for unit testing
I'm working on a fresh Grails project and recently noticed the default convention in the Spring Security Core generated User class now auto-encodes the password via a beforeInsert/Update event. That's ...
0
votes
1answer
175 views
Override JList toString method with groovy expando metaclass to display instances of groovy classes
In a groovy swing application, I have a class that represents teachers like the following:
Docente.groovy
public class Docente {
String codigo
String nombre
String apellidoPaterno
String ...
1
vote
2answers
275 views
Partial Mocking Class with Multiple Static Methods with GMock
I'm using GMock to add some unit testing to our existing Java projects. We have multiple places where the methods needing to be tested are static methods, which utilize additional static methods ...
6
votes
2answers
2k views
Copy Groovy class properties
I want to copy object properties to another object in a generic way (if a property exists on target object, I copy it from the source object).
My code works fine using ExpandoMetaClass, but I don't ...
0
votes
1answer
709 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
64 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
164 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 ...
3
votes
1answer
233 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 ...
0
votes
2answers
680 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 ...
2
votes
1answer
477 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
279 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
1k 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:
...
36
votes
7answers
11k 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 ...