mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-23 17:59:03 +00:00
The neo4j embedded driver no longer embeds the neo4j kernel and users are expected to add that dependency manually. We don't provide dependency management for any of them so this commit updates the documentation to refers to the official documentation. Closes gh-8567
= Spring Boot Neo4j Sample This sample demonstrates the integration of Neo4j with a simple entity. It expects a Neo4j instance running on `localhost`. If your neo4j instance requires authentication, update `application.properties` with your credentials: ``` spring.data.neo4j.username=neo4j spring.data.neo4j.password=secret ``` You can also locally add the embedded driver to embed Neo4j instead. Note that Spring Boot does not provide dependency management for that GPL-licensed library, see http://docs.spring.io/spring-data/neo4j/docs/4.2.x/reference/html/#reference.getting_started.driver[the official documentation] for more details.