You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spring-boot/spring-boot-samples/spring-boot-sample-data-neo4j
Andy Wilkinson 24925c3dae Merge branch '2.0.x' into 2.1.x
Closes gh-17078
6 years ago
..
src Merge branch '2.0.x' into 2.1.x 6 years ago
README.adoc Use HTTPS URLs where applicable 7 years ago
pom.xml Update build and setup configuration to use HTTPS 6 years ago

README.adoc

= 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.