我正在使用Gridgain 6.0,并尝试运行Gridgain Compute应用程序。我收到一个ClassNotFoundException,抱怨找不到org.gridgain.grid.util.ConcurrentHashMap8。这个类位于哪里?
发布于 2014-03-17 17:21:43
ConcurrentHashMap8是来自jdk8-backport库的类(GridGain库,带有一些来自JDK8代码库的后端口类)。它可以在GridGain Nexus存储库http://www.gridgainsystems.com:8085/nexus/content/repositories/external中找到
您可以使用maven自动解析所有依赖项,只需添加存储库链接并指定要使用的平台版本(在此代码片段中为“GridGain -platform”):
<repository>
<id>GridGain External Repository</id>
<url>http://www.gridgainsystems.com:8085/nexus/content/repositories/external</url>
</repository>
<dependency>
<groupId>org.gridgain</groupId>
<artifactId>gridgain-platform</artifactId>
<version>6.0.1</version>
</dependency>https://stackoverflow.com/questions/22409848
复制相似问题