neo4j java 实例_java项目集成neo4j的demo

【实例简介】

java项目集成neo4j的例子,包含所需的jar包,下载压缩后可以直接跑起来

【实例截图】

【核心代码】

java项目集成neo4j的demo

└── neo4jtest

├── src

│   ├── com

│   │   └── inesa

│   │   ├── common

│   │   │   ├── entity

│   │   │   │   ├── BaseEntity.java

│   │   │   │   └── RestfulResult.java

│   │   │   └── utils

│   │   │   ├── CommMessage.java

│   │   │   ├── CommUtils.java

│   │   │   ├── Constants.java

│   │   │   ├── CookieUtils.java

│   │   │   ├── DateUtils.java

│   │   │   ├── Encodes.java

│   │   │   ├── Exceptions.java

│   │   │   ├── IdGen.java

│   │   │   ├── PropertyUtil.java

│   │   │   └── StringUtils.java

│   │   └── neo4j

│   │   ├── controller

│   │   │   └── MyController.java

│   │   └── entity

│   │   └── Code.java

│   └── configs

│   └── beans

│   ├── spring-config-app.xml

│   ├── spring-config-common.xml

│   └── springmvc-servlet.xml

└── WebContent

├── 111.html

├── configFile

│   └── collection-base-config.zip

├── META-INF

│   ├── context.xml

│   └── MANIFEST.MF

└── WEB-INF

├── classes

│   ├── com

│   │   └── inesa

│   │   ├── common

│   │   │   ├── entity

│   │   │   │   ├── BaseEntity.class

│   │   │   │   └── RestfulResult.class

│   │   │   └── utils

│   │   │   ├── CommMessage.class

│   │   │   ├── CommUtils.class

│   │   │   ├── Constants.class

│   │   │   ├── CookieUtils.class

│   │   │   ├── DateUtils.class

│   │   │   ├── Encodes.class

│   │   │   ├── Exceptions.class

│   │   │   ├── IdGen.class

│   │   │   ├── PropertyUtil.class

│   │   │   └── StringUtils.class

│   │   └── neo4j

│   │   ├── controller

│   │   │   └── MyController.class

│   │   └── entity

│   │   └── Code.class

│   └── configs

│   └── beans

│   ├── spring-config-app.xml

│   ├── spring-config-common.xml

│   └── springmvc-servlet.xml

├── lib

│   ├── aopalliance-1.0.jar

│   ├── asm-5.0.2.jar

│   ├── aspectjweaver-1.8.10.jar

│   ├── bcpkix-jdk15on-1.53.jar

│   ├── bcprov-jdk15on-1.53.jar

│   ├── commons-configuration-1.10.jar

│   ├── commons-digester-2.1.jar

│   ├── commons-fileupload-1.2.1.jar

│   ├── commons-io-2.4.jar

│   ├── commons-lang3-3.3.2.jar

│   ├── commons-logging-1.1.1.jar

│   ├── com.sun.jersey.jersey-core-1.4.0.jar

│   ├── concurrentlinkedhashmap-lru-1.4.2.jar

│   ├── fastjson-1.2.24.jar

│   ├── jackson-core-asl-1.9.13.jar

│   ├── jackson-databind-2.9.5.jar

│   ├── jackson-jaxrs-1.9.13.jar

│   ├── jackson-mapper-asl-1.9.13.jar

│   ├── javax.servlet-api-3.1.0.jar

│   ├── javax.ws.rs.jar

│   ├── jersey-client-1.9.jar

│   ├── jersey-client-2.9.jar

│   ├── jersey-core-1.19.jar

│   ├── jersey-multipart-1.19.jar

│   ├── jersey-server-1.19.jar

│   ├── jersey-servlet-1.19.jar

│   ├── jetty-http-9.2.9.v20150224.jar

│   ├── jetty-io-9.2.9.v20150224.jar

│   ├── jetty-security-9.2.9.v20150224.jar

│   ├── jetty-server-9.2.9.v20150224.jar

│   ├── jetty-servlet-9.2.9.v20150224.jar

│   ├── jetty-util-9.2.9.v20150224.jar

│   ├── jetty-webapp-9.2.9.v20150224.jar

│   ├── jetty-xml-9.2.9.v20150224.jar

│   ├── jline-2.12.jar

│   ├── jsr311-api-1.1.2.r612.jar

│   ├── log4j-1.2.16.jar

│   ├── lucene-analyzers-common-5.5.0.jar

│   ├── lucene-codecs-5.5.0.jar

│   ├── lucene-core-5.5.0.jar

│   ├── lucene-queryparser-5.5.0.jar

│   ├── mimepull-1.9.3.jar

│   ├── neo4j-bolt-3.0.4.jar

│   ├── neo4j-browser-1.1.8.jar

│   ├── neo4j-codegen-3.0.4.jar

│   ├── neo4j-collections-3.0.4.jar

│   ├── neo4j-command-line-3.0.4.jar

│   ├── neo4j-common-3.0.4.jar

│   ├── neo4j-consistency-check-3.0.4.jar

│   ├── neo4j-csv-3.0.4.jar

│   ├── neo4j-cypher-3.0.4.jar

│   ├── neo4j-cypher-compiler-2.3-2.3.5.jar

│   ├── neo4j-cypher-compiler-3.0-3.0.4.jar

│   ├── neo4j-cypher-frontend-2.3-2.3.5.jar

│   ├── neo4j-cypher-frontend-3.0-3.0.4.jar

│   ├── neo4j-dbms-3.0.4.jar

│   ├── neo4j-graph-algo-3.0.4.jar

│   ├── neo4j-graphdb-api-3.0.4.jar

│   ├── neo4j-graph-matching-3.0.4.jar

│   ├── neo4j-import-tool-3.0.4.jar

│   ├── neo4j-io-3.0.4.jar

│   ├── neo4j-jdbc-driver-3.1.0.jar

│   ├── neo4j-jmx-3.0.4.jar

│   ├── neo4j-kernel-3.0.4.jar

│   ├── neo4j-logging-3.0.4.jar

│   ├── neo4j-lucene-index-3.0.4.jar

│   ├── neo4j-lucene-upgrade-3.0.4.jar

│   ├── neo4j-primitive-collections-3.0.4.jar

│   ├── neo4j-resource-3.0.4.jar

│   ├── neo4j-security-3.0.4.jar

│   ├── neo4j-server-3.0.4.jar

│   ├── neo4j-shell-3.0.4.jar

│   ├── neo4j-udc-3.0.4.jar

│   ├── neo4j-unsafe-3.0.4.jar

│   ├── net.sf.json_2.4.0.jar

│   ├── netty-all-4.0.28.Final.jar

│   ├── opencsv-2.3.jar

│   ├── org.springframework_3.1.1.RELEASE.jar

│   ├── parboiled-core-1.1.7.jar

│   ├── parboiled-scala_2.11-1.1.7.jar

│   ├── rhino-1.7R4.jar

│   ├── scala-library-2.11.8.jar

│   ├── scala-reflect-2.11.8.jar

│   └── server-api-3.0.4.jar

├── weblogic.xml

└── web.xml

28 directories, 124 files

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值