spring-boot/spring-boot-samples/spring-boot-sample-data-neo4j
2019-03-20 16:45:26 +00:00
..
src Merge branch '1.5.x' into 2.0.x 2019-03-20 16:45:26 +00:00
pom.xml Update build and setup configuration to use HTTPS 2019-03-19 16:58:31 +00:00
README.adoc Use HTTPS URLs where applicable 2018-02-02 12:03:12 +00:00

= 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
https://docs.spring.io/spring-data/neo4j/docs/4.2.x/reference/html/#reference.getting_started.driver[the official documentation]
for more details.