一、前言
在上一篇我们详细了解了neo4j的使用,从搭建到相关的语法操作,本篇紧接着之前的内容,来详细聊聊如何在springboot应用中集成和使用neo4j。
二、Spring Data Neo4j
和很多其他的中间件类似,都提供了类似jpa的方式与springboot进行集成,比如大家熟悉的springdata-jpa,操作es的jpa,操作mongo的jpa等,而 Neo4j也提供了与springboot整合的jpa方式,即Spring Data Neo4j,接下来就来演示springboot中如何集成和使用Spring Data Neo4j。
三、环境准备
提前搭建neo4j服务,参考上一篇文章,有详细的搭建步骤;
springboot版本,2.3.5;
提前准备一个springboot的工程;文章来源:https://www.toymoban.com/news/detail-713334.html
四、整合步骤
按照下面的步骤进行操作文章来源地址https://www.toymoban.com/news/detail-713334.html
4.1 导入必须的maven依赖
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>cn.h
到了这里,关于【微服务】springboot整合neo4j使用详解的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!