在IntelliJ Grails项目中使用外部JAR GPars时遇到了很多麻烦。我认为指定依赖项是一个问题。我正在使用GPars-1.0.0。我将它保存在lib目录中,并使用IntelliJ GUI将其作为依赖项包含在内 - 项目结构 - >模块 - >加。 I synchronized。我也试过adding directly to BuildConfig.groovy:
dependencies {
compile 'org.codehaus.gpars:gpars:1.0.0'
}
我在输入时获得Code Assist并进行编译。但是当我运行以下内容时:
import static groovyx.gpars.*
...
GParsPool.withPool {
[1, 2, 3, 4, 5].eachParallel { println it }
}
我得到ClassNotFoundException消息jsr166y.ForkJoinPool用于语句“GParsePool.withPool”
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中正确指定了依赖项?我的代码示例可能有误,但似乎遵循this example。
答案 0 :(得分:4)
想出来:我没有包括jsr166y.jar
compile "org.codehaus.jsr166-mirror:jsr166y:1.7.0"