这篇文章给大家分享的是有关neo4j如何安装配置的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。注:网上找了许多教程,发现都不太适合0基础的用户,所以就自己写了一下。 推荐使用1.
这篇文章给大家分享的是有关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)
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);
}
}
感谢各位的阅读!关于“neo4j如何安装配置”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
--结束END--
本文标题: neo4j如何安装配置
本文链接: https://lsjlt.com/news/55769.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0