运行 Neo4j 2.0 企业实例。使用 lib 目录中的 jar 来运行这个 groovy 脚本
import org.neo4j.graphdb.GraphDatabaseService
import org.neo4j.graphdb.ResourceIterable
import org.neo4j.graphdb.Transaction
import org.neo4j.graphdb.factory.GraphDatabaseFactory
import org.neo4j.kernel.EmbeddedGraphDatabase
import org.neo4j.tooling.GlobalGraphOperations
import org.neo4j.graphdb.Node
String DB_PATH = "/Users/afrieden/Neo4j/neo4j-enterprise-2.0.0-M03/"
GraphDatabaseService graphDb = new EmbeddedGraphDatabase(DB_PATH)
Transaction tx = graphDb.beginTx()
try {
Node runNode = graphDb.createNode()
println("we made it!")
tx.success()
}
finally{
tx.finish()
}
graphDb.shutdown()
以“我们成功了”的输出成功运行。但是,当我进入我的 webadmin 密码控制台并运行时
START n=node(*) RETURN n;
我只得到起始节点,其中没有任何内容。是否有任何地方可以找到它窒息的日志?谢谢!