I'm trying to dynamically load a Groovy script as a class but the class object is created even when the script's code does not compile.
For example, a simplified version of my Groovy code to load the Groovy script is as follows:
GroovyCodeSource src = new GroovyCodeSource(
"blah blah blah",
"Foo.groovy",
GroovyShell.DEFAULT_CODE_BASE
)
new GroovyClassLoader().parseClass(src, true)
Clearly, the code blah blah blah
isn't a legitimate Groovy script. And yet, a class object is successfully created for this dynamic code. According to GroovyClassLoader's Javadoc for the parseClass
method a CompilationFailedException
should be thrown for cases such as this.
How is it possible that the class is still created for broken code and how can I successfully create a class from dynamic Groovy source code conditionally on whether or not the code will compile? I've done a lot of research and experimentation but to no avail.
That's because groovy provides dynamic access to methods and properties and in terms of Groovy, the code
blah blah blah
, is valid. Actually you are providing code for Script (there is no class declaration). After compilation, you will get a class that extends groovy.lang.Script.So, let me continue your code and show you how it could be valid...
I would also advise you to run
groovyconsole
, enterblah blah blah
, press Ctrl+T, and check what class was generated for your script. Note that you could switch between different compilation/parsing phases.A possible workaround is to use the
CompileStatic
annotation on the methods or the class:You could force
GroovyClassLoader
to make static validation for the whole script.Let's imagine you want your scripts to access only some pre-defined variables/methods and you want to check this at compile step and not at runtime.
The following example shows how to do that and it will fail the
blah blah blah
code during compilation:P.S. There are other code transformers available in Groovy.