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)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
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);
}
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
原文链接:https://blog.csdn.net/u014451076/article/details/50997701
本文由主机测评网发布,不代表主机测评网立场,转载联系作者并注明出处:https://zhuji.jb51.net/shujuku/2861.html