Skip to content
This repository was archived by the owner on Sep 1, 2023. It is now read-only.

Commit b6bbcdb

Browse files
Fix a couple of issues in the readme for embedded bolt.
1 parent 5bb33c2 commit b6bbcdb

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

examples/embedded-bolt-connection/README.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
This example demonstrates a couple things:
55

6-
1. How to provide an instance of the Neo4j `DatabaseManagementService` as a managed bean into a Spring context.
7-
1. How to keep the configuration for the driver and the embedded instance in sync.
8-
1. This starter can connect against an embedded instance with the Bolt connector enabled.
6+
. How to provide an instance of the Neo4j `DatabaseManagementService` as a managed bean into a Spring context.
7+
. How to keep the configuration for the driver and the embedded instance in sync.
8+
. This starter can connect against an embedded instance with the Bolt connector enabled.
99

1010
While the <<testing-with-neo4j-harness,test harness example>> focuses on having an embedded instance through the harness in
1111
your context, this example focuses on having the embedded API for whatever reasons in your context.

examples/embedded-bolt-connection/src/main/java/org/neo4j/doc/driver/springframework/boot/embedded/DatabaseManagementServiceProperties.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,4 @@ public void setHomeDirectory(Optional<File> homeDirectory) {
5151
this.homeDirectory = homeDirectory;
5252
}
5353
}
54+
// end::EmbeddedConfig-Properties[]

examples/embedded-bolt-connection/src/main/java/org/neo4j/doc/driver/springframework/boot/embedded/Neo4jConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,3 +130,4 @@ public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata)
130130
}
131131
}
132132
}
133+
// end::EmbeddedConfig[]

0 commit comments

Comments
 (0)