Can't configure node_auto_index with InProcessServer() SDN 4
问题 I'm using the following java configuration for my Neo4j (using SDN 4.0.0.RELEASE) based application, with unit tests: ... @Bean public Neo4jServer neo4jServer() { return new InProcessServer(); } @Bean public SessionFactory getSessionFactory() { Neo4jRequest<String> neo4jRequest = new DefaultRequest(httpClient); String json = "{" + "\"name\" : \"node_auto_index\", " + "\"config\" : {" + "\"type\" : \"fulltext\", " + "\"provider\" : \"lucene\"" + "}" + "}"; neo4jRequest.execute(neo4jServer()