How to configure spring-data-neo4j embedded server properties?
问题 I have setup using spring-data-neo4j v 4.2.1, neo4j-ogm v 2.1.2. I need embedded neo4j server with specific configuration for testing. cypher.forbid_shortestpath_common_nodes=false . I tried this without success in spring @Configuration bean: @Bean public org.neo4j.ogm.config.Configuration getConfiguration() { org.neo4j.ogm.config.Configuration config = new org.neo4j.ogm.config.Configuration(); config.driverConfiguration().setDriverClassName("org.neo4j.ogm.drivers.embedded.driver