我有一个gradle主项目,其中有两个子项目,一个是java,另一个是一个Groovy库。
java项目是使用groovy库的http服务器。
所有编译都可以,并且运行良好,但是我要尝试的是即时编译groovy库(在每个http请求上),这样我对Groovy库进行更改时就不必重新编译所有内容。
这可能吗?
答案 0 :(得分:2)
它正在使用GroovyClassLoader。在处理静态类字段和交叉引用时,我遇到了一些警告,但是我基本上在几个项目中使用了此设置。在某些情况下,您可能必须注意加载顺序。
def groovyClassLoader = new GroovyClassLoader()
def classPaths = [ '/opt/myProject/src/groovy/' ]
// First, add Class Paths -- these are the root directories of your code files.
for (String path in classPaths) {
File dir = new File(path)
groovyClassLoader.addClasspath(dir.getAbsolutePath())
}
def src = [ '/opt/myProject/src/groovy/net/me/program/' ]
// Now, load groovy files
for (String path in src) {
// Iterate differently if no access to FileUtils
File[] directoryListing = FileUtils.listFiles(new File(path), null, false)
if (directoryListing != null) {
for (File child in directoryListing) {
groovyClassLoader.parseClass(child)
}
}
}
// See all the loaded classes
println(groovyClassLoader.loadedClasses)