当前位置:   article > 正文

【Neo4j】Spring Boot操作Neo4j_spring-boot-starter-data-neo4j

spring-boot-starter-data-neo4j

1.添加依赖:首先,在你的 Spring Boot 项目中的 pom.xml 文件中添加 Neo4j 相关的依赖。

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-data-neo4j</artifactId>
  4. </dependency>

2.配置数据源:在 application.properties(或 application.yml)文件中配置 Neo4j 数据库的连接信息。

  1. spring.data.neo4j.uri=bolt://localhost:7687
  2. spring.data.neo4j.username=neo4j
  3. spring.data.neo4j.password=your_password

3.创建实体类:在你的 Spring Boot 项目中创建实体类来映射到 Neo4j 中的节点和关系。

  1. import org.springframework.data.neo4j.core.schema.Id;
  2. import org.springframework.data.neo4j.core.schema.Node;
  3. @Node
  4. public class Person {
  5. @Id
  6. private Long id;
  7. private String name;
  8. // Getters(获取器)和 Setters(设置器)
  9. }

4.创建 Repository:创建一个 Neo4j 的 Repository 接口来处理对数据库的 CRUD 操作。

  1. import org.springframework.data.neo4j.repository.Neo4jRepository;
  2. public interface PersonRepository extends Neo4jRepository<Person, Long> {
  3. // 自定义查询方法可以在这里定义
  4. }

5.使用 Repository:在你的业务逻辑中使用自动生成的 Repository 接口来操作数据库。

  1. import org.springframework.beans.factory.annotation.Autowired;
  2. import org.springframework.stereotype.Service;
  3. @Service
  4. public class PersonService {
  5. @Autowired
  6. private PersonRepository personRepository;
  7. public void savePerson(Person person) {
  8. personRepository.save(person);
  9. }
  10. public Iterable<Person> getAllPersons() {
  11. return personRepository.findAll();
  12. }
  13. // 其他业务逻辑方法
  14. }

6.运行项目:完成以上步骤后,运行你的 Spring Boot 项目,并确保 Neo4j 数据库处于运行状态。你的项目就可以通过 Repository 接口来访问和操作 Neo4j 数据库了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/641503
推荐阅读
相关标签
  

闽ICP备14008679号