Neo4j企业嵌入式数据库

时间:2015-07-28 18:01:04

标签: neo4j cypher spring-data-neo4j

我将尝试使用Neo4j Enterprise嵌入式数据库。现在,我找不到任何教程来解释如何配置和使用Neo4j Enterprise嵌入式数据库,以及Maven和Spring。

为了使用嵌入式Neo4j Enterprise我应该下载Neo4j zip存档并启动它还是Maven依赖应该足够了?我不了解Java配置和下载的发行版之间的协作。

您能否告诉我如何将Neo4j Enterprise嵌入式数据库与我的应用程序一起使用?

2 个答案:

答案 0 :(得分:2)

如果你真的需要将Neo4j嵌入到一个应用程序中,你很可能只需要在org.neo4j下的核心和内核apis:neo4j依赖项而不是企业依赖项(org.neo4j:neo4j-enterprise)。

您的maven配置具有以下依赖关系:

<dependency>
  <groupId>org.neo4j</groupId>
  <artifactId>neo4j</artifactId>
  <version>NEO4J VERSION HERE</version>
</dependency>

您的问题让我觉得您可能真的想将Neo4j作为服务器运行并通过REST或其任何BOLT驱动程序连接到它。您不下载并启动嵌入式版本 - 您可以使用服务器执行此操作。你能准确说明你想做什么吗?

答案 1 :(得分:1)

只需在<div id="hcontainer" style="width: 600px;"> <div id="inner_container" style="overflow: auto; width: 2500px;"> <div class="image"> <img src="1.jpg" width="400px" height="200px" /><span>My new_1 text</span> </div> <div class="image"> <img src="2.jpg" width="400px" height="200px" /><span>My new_2 text</span> </div> <div class="image"> <img src="3.jpg" width="400px" height="200px" /><span>My new_3 text</span> </div> <div class="image"> <img src="4.jpg" width="400px" height="200px" /><span>My new_4 text</span> </div> <div class="image"> <img src="5.jpg" width="400px" height="200px" /><span>My new_5 text</span> </div> <div class="image"> <img src="6.jpg" width="400px" height="200px" /><span>My new_6 text</span> </div> </div>

上添加neo4j依赖项

如果你不需要HA就可以了。