问题描述
neo4j官方页面上提到了jdbc驱动程序测试(此处).但是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存储库中的最新版本: https://maven-repository.com/artifact/org.neo4j/neo4j-jdbc
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驱动程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!