1. 程式人生 > 資料庫 >neo4j安裝配置入門教程

neo4j安裝配置入門教程

注:網上找了許多教程,發現都不太適合0基礎的使用者,所以就自己寫了一下。
推薦使用1.x版本,經測試2.3.3大量函式被遺棄。

安裝啟動

  • 官網下載tar包
  • 解壓,進入bin下,執行./neo4j
  • 在url中開啟localhost:7474即可使用

配置

資料庫的location設定。
conf/neo4j-server.properties中第14行org.neo4j.serve.database.location=進行修改

使用

1.web視覺化neo4j的工具是webadmin,開啟方式:url中開啟local/webadmin,即可使用
注:程式碼修改資料庫,似乎需要每次重啟neo4j才能在webadmin中顯示,也有可能是資料同步慢

2.簡單例項(java操作neo4j)

package neo4j;

import java.io.File;
import java.io.IOException;

import javax.management.relation.Relation;

import org.neo4j.graphdb.GraphDatabaseService;
import org.neo4j.graphdb.Node;
import org.neo4j.graphdb.Relationship;
import org.neo4j.graphdb.RelationshipType;
import org.neo4j.graphdb.Transaction;
import org.neo4j.graphdb.factory.GraphDatabaseFactory;
import org.neo4j.io.fs.FileUtils;

public class test {


 public enum RelTypes implements RelationshipType{
  KNOWS
 }

 private static void registerShutdownHook( final GraphDatabaseService graphDb )
 {
  // Registers a shutdown hook for the Neo4j instance so that it
  // shuts down nicely when the VM exits (even if you "Ctrl-C" the
  // running example before it's completed)
  /*為了確保neo4j資料庫的正確關閉,我們可以新增一個關閉鉤子方法
   * registerShutdownHook。這個方法的意思就是在jvm中增加一個關閉的
   * 鉤子,當jvm關閉的時候,會執行系統中已經設定的所有通過方法
   * addShutdownHook新增的鉤子,當系統執行完這些鉤子後,jvm才會關閉。
   * 所以這些鉤子可以在jvm關閉的時候進行記憶體清理、物件銷燬等操作。*/
  Runtime.getRuntime().addShutdownHook( new Thread()
  {
   @Override
   public void run()
   {
    graphDb.shutdown();
   }
  } );
 }

 public static void main(String[] args) throws IOException {

  FileUtils.deleteRecursively( new File( "db" ) ); 
  GraphDatabaseService graphdb=new GraphDatabaseFactory().newEmbeddedDatabase("db");
  Relationship relationship;
  Transaction tx=graphdb.beginTx();
  try{
   Node node1=graphdb.createNode();
   Node node2=graphdb.createNode();

   node1.setProperty("message","Hello");
   node2.setProperty("message","World");

   relationship = node1.createRelationshipTo(node2,RelTypes.KNOWS);
   relationship.setProperty("message","brave neo4j");


   tx.success();
   System.out.println("successfully");
  }
  finally{
   tx.finish();
  }
  registerShutdownHook(graphdb);
 }

}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。