首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >org.gridgain.grid.util.ConcurrentHashMap8在Gridgain 6.0中的位置

org.gridgain.grid.util.ConcurrentHashMap8在Gridgain 6.0中的位置
EN

Stack Overflow用户
提问于 2014-03-14 23:50:34
回答 1查看 109关注 0票数 0

我正在使用Gridgain 6.0,并尝试运行Gridgain Compute应用程序。我收到一个ClassNotFoundException,抱怨找不到org.gridgain.grid.util.ConcurrentHashMap8。这个类位于哪里?

EN

回答 1

Stack Overflow用户

发布于 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”):

代码语言:javascript
复制
<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>
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/22409848

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档