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.
ad3e5c04bb
To be compatible with Gradle's plugin portal, plugins must have an ID that uses a reverse domain name. This means that spring-boot is not compatible. This commit introduces a new ID, org.springframework.boot, and deprecates the old ID. Closes gh-6997 |
8 years ago | |
---|---|---|
.. | ||
src | 9 years ago | |
README.adoc | 9 years ago | |
pom.xml | 8 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: ``` <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-ogm-embedded-driver</artifactId> <version>${neo4j-ogm.version}</version> </dependency> ```