System Requirements
Each machine where you use the Simba Neo4j JDBC Driver must have Java Runtime Environment (JRE) 8.0
Note:
The reactor-core third-party library inside the Neo4j JDBC connector uses JDK internal APIs that have been removed from Java 11. However, these APIs are only used to enhance its stack traces and will not be invoked if Java 11 is detected.
The Simba Neo4j JDBC Driver supports Neo4j server version 4.x and Neo4j Aura. In addition, the Neo4j APOC library must be installed on the server machine.
The required APOC version depends on the Neo4j version that you are connecting to:
- Neo4j server version 4.x requires the matching APOC version or later (minimum version 4.0.0.4).
We recommend that you make sure APOC procedures are made accessible by adding or appending apoc.* to the list of comma separated procedures provided through dbms.security.procedures.unrestricted in the Neo4j server configuration file.
For example:
dbms.security.procedures.unrestricted=algo.*,apoc.*