├── .gitignore ├── LICENSE ├── README.md ├── pom.xml ├── src ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── janusgraph │ │ │ ├── Example │ │ │ ├── CreateSchema.java │ │ │ ├── GraphDataLand.java │ │ │ ├── SchemaProperties.java │ │ │ └── SchemaVertex.java │ │ │ ├── JanusgraphApplication.java │ │ │ ├── config │ │ │ ├── GraphSourceConfig.java │ │ │ └── JanusGraphConfig.java │ │ │ ├── referenceExample │ │ │ ├── GraphOfTheGodsFactory.java │ │ │ └── RemoteGraphApp.java │ │ │ └── titExample │ │ │ ├── InitSchemaExample.java │ │ │ └── LandDataExample.java │ └── resources │ │ ├── application.properties │ │ └── conf │ │ ├── janusgraph-cql-es-server.properties │ │ ├── remote-graph.properties │ │ └── remote-objects.yaml └── test │ └── java │ └── com │ └── example │ └── janusgraph │ ├── ExamplTest.java │ └── JanusgraphApplicationTests.java └── 集群搭建.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/example/janusgraph/Example/CreateSchema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/java/com/example/janusgraph/Example/CreateSchema.java -------------------------------------------------------------------------------- /src/main/java/com/example/janusgraph/Example/GraphDataLand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/java/com/example/janusgraph/Example/GraphDataLand.java -------------------------------------------------------------------------------- /src/main/java/com/example/janusgraph/Example/SchemaProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/java/com/example/janusgraph/Example/SchemaProperties.java -------------------------------------------------------------------------------- /src/main/java/com/example/janusgraph/Example/SchemaVertex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/java/com/example/janusgraph/Example/SchemaVertex.java -------------------------------------------------------------------------------- /src/main/java/com/example/janusgraph/JanusgraphApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/java/com/example/janusgraph/JanusgraphApplication.java -------------------------------------------------------------------------------- /src/main/java/com/example/janusgraph/config/GraphSourceConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/java/com/example/janusgraph/config/GraphSourceConfig.java -------------------------------------------------------------------------------- /src/main/java/com/example/janusgraph/config/JanusGraphConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/java/com/example/janusgraph/config/JanusGraphConfig.java -------------------------------------------------------------------------------- /src/main/java/com/example/janusgraph/referenceExample/GraphOfTheGodsFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/java/com/example/janusgraph/referenceExample/GraphOfTheGodsFactory.java -------------------------------------------------------------------------------- /src/main/java/com/example/janusgraph/referenceExample/RemoteGraphApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/java/com/example/janusgraph/referenceExample/RemoteGraphApp.java -------------------------------------------------------------------------------- /src/main/java/com/example/janusgraph/titExample/InitSchemaExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/java/com/example/janusgraph/titExample/InitSchemaExample.java -------------------------------------------------------------------------------- /src/main/java/com/example/janusgraph/titExample/LandDataExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/java/com/example/janusgraph/titExample/LandDataExample.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/main/resources/conf/janusgraph-cql-es-server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/resources/conf/janusgraph-cql-es-server.properties -------------------------------------------------------------------------------- /src/main/resources/conf/remote-graph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/resources/conf/remote-graph.properties -------------------------------------------------------------------------------- /src/main/resources/conf/remote-objects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/main/resources/conf/remote-objects.yaml -------------------------------------------------------------------------------- /src/test/java/com/example/janusgraph/ExamplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/test/java/com/example/janusgraph/ExamplTest.java -------------------------------------------------------------------------------- /src/test/java/com/example/janusgraph/JanusgraphApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/src/test/java/com/example/janusgraph/JanusgraphApplicationTests.java -------------------------------------------------------------------------------- /集群搭建.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingbingll/janusgraph-example/HEAD/集群搭建.md --------------------------------------------------------------------------------