在哪里可以找到neo4j jdbc驱动程序? [英] Where can I find neo4j jdbc driver?

查看:432
本文介绍了在哪里可以找到neo4j jdbc驱动程序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

neo4j官方页面上提到了jdbc驱动程序测试(

The official neo4j page has a mention to a jdbc driver test (here). But the jdbc link appear to be broken.

有人知道在哪里可以找到neo4j的jdbc驱动程序(jar文件)?

Someone knows where can I find a jdbc driver (jar file) to neo4j?

推荐答案

2.1.4是Maven存储库中的最新版本:

2.1.4 is the latest in the maven repository: https://maven-repository.com/artifact/org.neo4j/neo4j-jdbc

https://maven-repository.com/artifact/org下载. neo4j/neo4j-jdbc 或用作maven依赖项:

Download from https://maven-repository.com/artifact/org.neo4j/neo4j-jdbc or use as a maven dependency:

<dependency>
    <groupId>org.neo4j</groupId>
    <artifactId>neo4j-jdbc</artifactId>
    <version>2.1.4</version>
</dependency

仅供参考,此版本可与Neo4j 2.1.5配合使用(我正在使用它),但尚未针对2.1.6进行过尝试

FYI this version works fine with Neo4j 2.1.5 (I'm using it), but have not tried it against 2.1.6

针对Neo4j 2.3的更新

可用快照:

     <dependency>
          <groupId>org.neo4j</groupId>
          <artifactId>neo4j-jdbc</artifactId>
          <version>2.3-SNAPSHOT</version>
     </dependency>

     <repository>
          <id>neo4j-public</id>
          <url>http://m2.neo4j.org/content/groups/public</url>
          <releases>
              <enabled>true</enabled>
              <checksumPolicy>warn</checksumPolicy>
          </releases>
     </repository>

这篇关于在哪里可以找到neo4j jdbc驱动程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆