0
votes
1answer
45 views

Groovy MetaProgramming - intercept all method even missing ones

I'd like to intercept all method (instance and static) of a class even the missing ones. Let say that : class SomeClass { def methodMissing(String name, args) { if(name == ...
1
vote
1answer
74 views

Groovy MetaProgramming - How to override all methods of a class

I'ld like to wrap all methods of a class a generic way. So I assume I don't know the methods the class is implementing and AOP is not an alternative. Groovy metaprogramming allows to redefine methods ...
0
votes
1answer
69 views

Groovy Dynamic Object - How to properly reset properties?

Based on this question I created a Groovy class that will have dynamic properties. class MyDynamic { def propertyMissing( String name, value ) { this.metaClass."$name" = value value } } ...
3
votes
1answer
93 views

Adding a property to a Groovy object from Java

I would like to be able to add a property to an instance of String object using Groovy's metaprogramming capabilities from Java. To do this from Groovy is simple: class GroovyClass { def ...
0
votes
0answers
41 views

How can I intercept a script's run() method in groovy from it's parent

I'm trying to change how my groovy scripts are implemented just a little. I still want them to run from the command line, but I'd really like to allow different methods to be called from within the ...
2
votes
1answer
39 views

How to add pre and post code to a method with Groovy meta programming?

Question There is a class MyClass with a method myMethod(). How can I add some code, for example println "hello", that is executed every time before myMethod() is called? Example of method ...
0
votes
1answer
39 views

Can I do this with ExpandoMetaClasses in Groovy?

When upgrading from Groovy 1.8.4 to 1.8.5 the JsonSlurper returns a BigDecimal instead of a float or double for numbers in Json. For example consider the following JSON document: ...
0
votes
0answers
82 views

Groovy map coercion access class level variable in closure

I am trying to override a complex method in a builder for some unit testing. This is a web service request builder so the builder class has an instance variable of the request type named request. so ...
0
votes
2answers
470 views

Overriding service method in grails integration test

I'm trying to test controller's action in integration test. It's a simple scenario where action that I'm trying to test is calling service's method. I'm trying to override that method using metaclass ...
1
vote
1answer
126 views

Groovy: variables in method names with '??' double question marks

I have this vague recollection reading about groovy that there exists a '??' sugar that can be used to make method names dynamic. I had thought this is how dynamic finders in grails are achieved, but ...
1
vote
2answers
111 views

Why GORM is using methodMissing

As I read here, grails is using methodMissing to inject GORM methods to the domain classes, but having said that methodMissing are expensive to execute cause only occur in the case of failed dispatch, ...
0
votes
1answer
61 views

How to override method Class<?>.getAt in Groovy

Currently I'm using Groovy 1.8.2 and the following code works for me as expected: Class.metaClass.getAt = { args -> println "Called ${delegate}[${args}]" TypeDefinition.create(delegate, ...
1
vote
1answer
177 views

Looking for solution for Groovy @Mixin not to break encapsulation

I want to use the @Mixin annotation in Groovy which does exactly what I want except for it also mixes in private methods and fields. class A { def private fooA() { println("A") } } ...
3
votes
1answer
66 views

Can Groovy objects be invoked like functions with parameters?

In Groovy, I can make an object invokable like a function by monkey-patching the metaclass' call method: myObject.metaClass.call = { "hello world" } println myObject() // prints "hello world" ...
1
vote
4answers
144 views

How can I change Java method implementation of single instance?

What is correct way to change method signature for single java object. Suppose I wanna change toString method. myObject.metaClass.toString = { pritln "hello world" } Looks like this code has ...
0
votes
1answer
123 views

Grails - Write method available in any controller

I'm quite new into groovy / grails world, so forgive for asking simple question. I'm pretty sure this can be done by meta-programming, that is injecting method into definition of grails controller ...
0
votes
2answers
145 views

Best way to mock filewriter

I want to test the following method and specifically that write and close methods were called (In the case of write check what was written was what I expected). The true source code is Java and I am ...
0
votes
1answer
142 views

Groovy Meta Programming

I want to override a method definition in Grails. I am trying to use Groovy metaprogramming as the class which I want to override belongs to a framework. Below is the original class. class ...
0
votes
1answer
92 views

Dynamically added groovy property is not unique per-instance

If I dynamically add a property to a class, each instance of the class is initialized with a reference to the same value (even though the properties are correctly at different addresses, I don't want ...
1
vote
1answer
274 views

Intercepting all custom classes in Grails

I would like to monitor which of MY classes were accessed during Grails app execution. For this purpose I’m thinking of adding logging into ‘before method invocation’ joint to all custom classes and ...
2
votes
1answer
57 views

Groovy 1.8.6 Incorrect metaClassed Method Being Used

I stumbled across this when doing a refactoring with Grails 2.0.1 but I pulled the basics of this problem out into a straight groovy 1.8.6 test and it still failed. I came across it because my method ...
2
votes
1answer
369 views

groovy metaclass replace superclass method

Is there a way to replace using the metaclass object, a method that is of a super class. Example: class A { def doIt(){ two() println 'do it!' } protected two(){ ...
1
vote
1answer
232 views

Groovy - overriding invokeMethod for a single instance

I have an instance of a java object, let's say an instance of ArrayList called myList. For this particular instance, I want to override the invokeMethod method to (say) log that method was called. I ...
0
votes
1answer
154 views

Groovy - remove class field transient modifier using metaClass

We have a simple Groovy class: class A implements Serializable { transient Integer t // this field is transient in the serialization process Object o } as we know, we can modify properties ...
0
votes
1answer
315 views

meta method inject on Grails Controller

I wrote a plugin to inject a method on all controller, i write this on doWithDynamicMethod {ctx -> } for (classes in ...
1
vote
2answers
174 views

groovy generic fluent builder

I'd like to create a simple wrapper, which would allow calling objects methods as a fluent interface. I've been thinking about rewriting methods of a class upon creation, but this doesn't seem to ...
0
votes
0answers
181 views

grails metaprogramming method inject

I've manage to intercept non static method via grailsApplication.domainClasses.each { gc -> domainClasss = gc.clazz domainClass.metaClass.invokeMethod { String name,args -> ...
0
votes
1answer
297 views

How to include groovy in a grails project

I'm an idiot or something, and I don't know how to add groovy into src/groovy and make it work. Lets say I got some meta stuff in my bootstrap and I want to move those calls to a class I can call ...
0
votes
1answer
118 views

Add a method to an object in Grails and have it usable globally

I am attempting to add some string utility methods to the String class by utilizing Groovy's metaclass functionality. Right now I have something like this in my init closure in my BootStrap.groovy ...
2
votes
2answers
384 views

metaClass property on java classes in groovy

i'm learning groovy and I have a question concerning its metaprogramming facilities. From what I understand every object in groovy implements the groovy.lang.GroovyObject interface (implicitly added ...
1
vote
2answers
346 views

replace static field

The CountryTagLib provided by Grails has an (out-of-date) list of Countries class CountryTagLib { static final ISO3166_3 = [ "scg":"Serbia and Montenegro", "zmb":"Zambia" ] } ...
2
votes
1answer
638 views

working with custom scaffolding for grails controllers?

I'd like to know more about customising grails controller generationg but I can't find any documentation. Specifically my motivation is that I'm working with a legacy database and this is readonly. ...
0
votes
2answers
89 views

How can I save a method for later, stubbing it for a period of time?

I'm writing a selenium-aid for a web application, and for one of the functions, I'm stubbing away the responses of a grails service. Is there any way to persist the methods for later, such that I can ...
0
votes
1answer
252 views

Using asType with Mixin annotation

I'd like write a custom type conversion Category in Groovy. The goal is to assign the values of a Map to the fields of a Groovy bean. In the future there will be different response types. The values ...
2
votes
3answers
2k views

Groovy dynamic property per object

Using Groovy 1.8. I'm trying to create a dynamic class definition that will cache properties per object. I did use propertyMissing without adding the property to the object just fine. I just think ...
1
vote
1answer
498 views

Grails - Making Methods Globally Available and Metaclass Programming

I inserted this line into my init() of my BootStrap class Integer.metaClass.minutes = { 60000L * delegate } I was then not able to use it from a Job class (Quartz plugin). Do I put this line of ...
0
votes
1answer
95 views

Meta-properties with groovy?

In python ( specifically CherryPy ) I can do something like class Root(Object): def index(): #some sort of logic here index.expose = True is there something similar for Groovy? Update ...
1
vote
1answer
128 views

Expand Abstract Java Class for all instances

I'm working on a grails application atm. I need a property on an abstract java class (org.quartz.Trigger) adding Trigger.metaClass.id = { delegate.hashCode() } before I call the class works. I ...
1
vote
1answer
3k views

Grails / Groovy - Domain Object - Map of its Properties

How can I get a map of the key/values of only the user-defined properties on one of my domain objects? Problem is if I do this myself, I get my properties plus class, metaClass, constraints, ...
0
votes
2answers
681 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 ...
3
votes
1answer
604 views

Groovy adding code to a constructor

Is there a way in Groovy that I can add code to a constructor when a class is instantiated? I have a Groovy class (but I can't modify the source of this particular one), but I was hoping there was a ...
5
votes
1answer
533 views

Use Groovy Category implicitly in all instance methods of class

I have simple Groovy category class which adds method to String instances: final class SampleCategory { static String withBraces(String self) { "($self)" } } I want to use this ...
2
votes
2answers
524 views

Mock static method with no parameters in Groovy

I need to mock a static method. I'm using the EMC approach described at Mocking static methods using groovy. Like this TestDaemon.metaClass.'static'.newDownloadManager = {downloadManager} The ...
0
votes
1answer
182 views

AST Transformation in Groovy: Create Macro to Give a Basic Constructor

I would like to make a macro that would essentially expand this: @WithBasicConstructor class Person { private String name private String address } into this: class Person { private String ...
1
vote
2answers
212 views

Groovy metaprogramming with Java

Say I have a large collection of Java static methods in a class of only static methods. All of them apply to some type of collection class. How can I scan this class, and using Groovy add each of ...
1
vote
1answer
438 views

What is the difference between metaClass.methods and metaClass.metaMethods?

If I add a meta method to a class, I would expect it to show up in Class.metaClass.metaMethods. But this seems not to be the case. In particular, if I do this: class Example { def realFoo() { ...
0
votes
1answer
362 views

Groovy - How do I use metaprogramming to add tracing to all static methods of a class?

This is what I have so far: static def traceMethods(Class clazz) { def mc = clazz.metaClass mc.static.invokeMethod = { String name, args -> List types = args.collect { it == null ...
1
vote
1answer
90 views

Is there a good reason to use metaprogramming to modify the return type of a method?

Say you have a method: boolean test() { return true; } Would it ever be a good idea to use metaprogramming to change it to return a String: String test() {return "test"} I think using ...
1
vote
1answer
172 views

AST transforms not working with groovy eclipse plugin

I wrote a simple AST transform to add logging around annotated methods. It correctly adds logging around methods when I compile my program with groovyc on the command line. However, it doesn't have ...
1
vote
1answer
2k views

Add method to metaclass

I'm just playing with the metaclass programming in Groovy. But suddenly I was facing a little problem which I just could not get working... Here is the simple script: // define simple closure def ...

1 2