neu242
neu242

Reputation: 16575

Why can't I instantiate a Groovy class from another Groovy class?

I have two classes. One.groovy:

class One {

  One() {}

  def someMethod(String hey) {
    println(hey)
  }
}

And Two.groovy:

class Two {

  def one

  Two() {
    Class groovy = ((GroovyClassLoader) this.class.classLoader).parseClass("One.groovy")
    one = groovy.newInstance()
    one.someMethod("Yo!")
  }
}

I instantiate Two with something like this:

GroovyClassLoader gcl = new GroovyClassLoader();
Class cl = gcl.parseClass(new File("Two.groovy"));
Object instance = cl.newInstance();

But now I get groovy.lang.MissingMethodException: No signature of method: script13561062248721121730020.someMethod() is applicable for argument types: (java.lang.String) values: [Yo!]

Any ideas?

Upvotes: 4

Views: 3524

Answers (1)

Will
Will

Reputation: 14519

Seems like it is occurring due to the groovy class loader method being called: the string one is to parse a script in text format. Using the File one worked here:

class Two {

  def one

  Two() {
    Class groovy = ((GroovyClassLoader) this.class.classLoader).parseClass("One.groovy")
    assert groovy.superclass == Script // whoops, not what we wanted

    Class groovy2 = ((GroovyClassLoader) this.class.classLoader).parseClass(new File("One.groovy"))
    one = groovy2.newInstance()
    assert one.class == One // now we are talking :-)


    one.someMethod("Yo!") // prints fine

  }
}

Upvotes: 2

Related Questions