2

在 IntelliJ Grails 项目中使用外部 JAR GPars 时遇到了很多麻烦。我认为这是指定依赖项的问题。我正在使用GPars-1.0.0。我将它保存在 lib 目录中,并使用 IntelliJ GUI--项目结构->模块->添加将其作为依赖项包含在内。 我同步了。我还尝试直接添加到 BuildConfig.groovy

dependencies {
    compile 'org.codehaus.gpars:gpars:1.0.0'
}

打字时我得到代码辅助,它编译。但是当我运行以下命令时:

import static groovyx.gpars.*

...

GParsPool.withPool {
     [1, 2, 3, 4, 5].eachParallel { println it }
}

我收到声明“GParsePool.withPool”的 ClassNotFoundException 消息 jsr166y.ForkJoinPool

Line | Method 
->>  156 | findClass                 in org.codehaus.groovy.tools.RootLoader
|    306 | loadClass                 in java.lang.ClassLoader
|    128 | loadClass . . . . . . . . in org.codehaus.groovy.tools.RootLoader
|    247 | loadClass                 in java.lang.ClassLoader
|   2427 | privateGetDeclaredMethods in java.lang.Class
|   1791 | getDeclaredMethods        in     ''
|     46 | getLocked . . . . . . . . in org.codehaus.groovy.util.LazyReference
|     33 | get                       in     ''
|     80 | load . . . . . . . . . .  in allison.zipcode.ZipcodeService$$ENsSBrUW
|     30 | load                      in allison.zipcode.CountryController
|    195 | doFilter . . . . . . . .  in grails.plugin.cache.web.filter.PageFragmentCachingFilter
|     63 | doFilter                  in grails.plugin.cache.web.filter.AbstractFilter
|    886 | runTask . . . . . . . . . in java.util.concurrent.ThreadPoolExecutor$Worker
|    908 | run                       in     ''
^    680 | run . . . . . . . . . . . in java.lang.Thread

有任何想法吗?我是否在 BuildConfig 中正确指定了依赖项?我的代码示例可能是错误的,但似乎遵循此示例

4

1 回答 1

4

想通了:我没有包括 jsr166y.jar

compile "org.codehaus.jsr166-mirror:jsr166y:1.7.0"
于 2012-12-23T20:39:42.880 回答