Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neo4j/neo4j-java-driver-spring-boot-starter
Automatic configuration of Neo4j's Java Driver for Spring Boot applications
https://github.com/neo4j/neo4j-java-driver-spring-boot-starter
bolt driver java neo4j neo4j-driver spring-boot spring-boot-starter
Last synced: about 2 months ago
JSON representation
Automatic configuration of Neo4j's Java Driver for Spring Boot applications
- Host: GitHub
- URL: https://github.com/neo4j/neo4j-java-driver-spring-boot-starter
- Owner: neo4j
- License: apache-2.0
- Archived: true
- Created: 2019-06-04T12:32:55.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-10T07:53:25.000Z (over 1 year ago)
- Last Synced: 2024-09-22T09:02:20.041Z (about 2 months ago)
- Topics: bolt, driver, java, neo4j, neo4j-driver, spring-boot, spring-boot-starter
- Language: Java
- Homepage: https://neo4j.github.io/neo4j-java-driver-spring-boot-starter/
- Size: 733 KB
- Stars: 35
- Watchers: 55
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.adoc
- Contributing: CONTRIBUTING.adoc
- License: LICENSE.txt
Awesome Lists containing this project
README
= Neo4j Spring Boot Starter
:sectanchors:
// tag::properties[]
:groupId: org.neo4j.driver
:artifactId: neo4j-java-driver-spring-boot-starter
:neo4j-java-driver-spring-boot-starter_version: 4.3-SNAPSHOT
:spring-boot_version: 2.3.12.RELEASE
:neo4j_version: 4.3.6
:config_prefix: org.neo4j.driver
:gh_base: https://github.com/neo4j/neo4j-java-driver-spring-boot-starter// end::properties[]
image:https://img.shields.io/maven-central/v/org.neo4j.driver/neo4j-java-driver-spring-boot-starter.svg[Maven Central,link=http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.neo4j.driver%22%20AND%20a%3A%22neo4j-java-driver-spring-boot-starter%22]
[abstract]
--
A Spring Boot starter with automatic configuration for the https://github.com/neo4j/neo4j-java-driver[Neo4j Java Driver].
--IMPORTANT: This project is now superseded by the automatic configuration in Spring Boot 2.4.
Spring Boot 2.4 includes the same means of configuring a standalone Neo4j Driver instance, including the same health checks.
There is a dedicated starter for Spring Data Neo4j 6 (formerly known as SDN/RX).== Introduction
This starter provides a convenient way to configure all aspects of the Neo4j-Java-Driver from within a Spring Boot application.
It provides a single, managed Spring Bean of type `org.neo4j.driver.Driver`, configured to your needs.The starter does not add any additional functionality on top of the driver, but only exposes the drivers configuration in a Spring friendly way.
However, it configures the driver to use Springs JCL logging variation by default.The 4.x.y. line of the starter only supports the 4.x.y line of the Neo4j Java Driver.
It is tested and developed against https://spring.io/projects/spring-boot[Spring Boot {spring-boot_version}].The starter supports Neo4j server mode only, that is: A connection against a Neo4j server over the Bolt protocol.
== Manual
For a gentle introduction and some getting started guides, please use our
link:https://neo4j.github.io/neo4j-java-driver-spring-boot-starter/[Manual].
The manual contains descriptions of all examples, which you'll find in the project source directory under https://github.com/neo4j/neo4j-java-driver-spring-boot-starter/tree/master/examples[examples].