Tagged Questions
The groovyclassloader tag has no wiki summary.
6
votes
4answers
1k views
Run groovy script from within gradle
What's the best way to create a gradle task, which runs a groovy script? I realize that gradle build files are groovy, so I would think it would be possible to do something like this:
task run ...
3
votes
0answers
76 views
Beanshell will not allow me to add jars to the “default” JRE classloader?
I have a question about Beanshell that I can't find an answer to anywhere. I am only able to run Beanshell scripts in 1 of 2 ways:
Where Classpath is defined before invoking Beanshell and Beanshell ...
1
vote
4answers
413 views
Groovy dynamically invoked class and find method doesnt't work?
I trying to build a dynamic query similar to :
def domain = DomainName
def ids = 1
def domainClass = "$domain" as Class
domainClass.find("from ${domain} as m where m.job = ${ids} ").id
But it's not ...
1
vote
2answers
358 views
What are the pros and cons of using GroovyClassLoader vs. GroovyShell
I need to run some external code from my Java application that will be updated frequently and orthogonally to the rest of the application. As I do not to re-deploy the entire application for every ...
0
votes
1answer
36 views
lookupScriptFiles “true” in the loadClass() method
Extended GroovyClassloader and override loadclass method
If I make lookupScriptFiles "true" in the loadClass() method the script run and doesn't require an import statement referencing a groovy class ...
0
votes
0answers
35 views
GroovyClassLoader and Java parent classes
I have a Java parent class (ParentTest.java):
public class ParentTest {}
And a Groovy subclass (SubTest.groovy):
public class SubTest extends ParentTest {}
Here's a Main class in Groovy ...
0
votes
1answer
558 views
Grails 1.4.0.M1 (with STS 2.7.0.M2) NoClassDefFoundError for GantBuilder
I have just upgraded to...
Grails 1.4.0.M1
Groovy 1.8.0
STS Version: 2.7.0.M2 Build Id: 201106101000 - 64bit Cocoa version for Mac
I have OS X 10.5.8. with JVM 1.5.0
When I run a grails command ...
0
votes
1answer
251 views
Cannot dynamically change or add methods in a class using GroovyClassLoader
I try to dynamically change and add methods of a class defined in a groovy script from another groovy script but cannot figure out why it works if I use the classname directly in .metaClass. but not ...
0
votes
2answers
224 views
Loading classes not present in the classpath
Let's say I've compiled a Groovy script using Groovyc, which has generated one or more .class files in the file system. From a Java application, how do I add those classes to the classpath dynamically ...
0
votes
0answers
340 views
Groovy classloader bug?
I've encountered buggy behavior:
import groovy.xml.DOMBuilder
def filePath = "MestaXml.log";
def doc = DOMBuilder.parse(new FileReader(filePath));
def docElm = doc.documentElement;
-
$ groovy ...