Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/list/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
找不到索引提供程序:嵌入的Neo4j 4.0.0 差事 _Neo4j_Spring Data_Spring Boot_Spring Data Neo4j_Neo4j Spatial - Fatal编程技术网

找不到索引提供程序:嵌入的Neo4j 4.0.0 差事

找不到索引提供程序:嵌入的Neo4j 4.0.0 差事 ,neo4j,spring-data,spring-boot,spring-data-neo4j,neo4j-spatial,Neo4j,Spring Data,Spring Boot,Spring Data Neo4j,Neo4j Spatial,该链接似乎有误导性,因为在将依赖项添加到pom文件时,我仍然会遇到主题错误。但是,当我在带有spatial插件的服务器上运行它时,情况并非如此。在maven pom中使用此存储库 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XML

该链接似乎有误导性,因为在将依赖项添加到pom文件时,我仍然会遇到主题错误。但是,当我在带有spatial插件的服务器上运行它时,情况并非如此。

在maven pom中使用此存储库

            <?xml version="1.0" encoding="UTF-8"?>
            <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
                <modelVersion>4.0.0</modelVersion>

                <groupId>com.erranda</groupId>
                <artifactId>prototype</artifactId>
                <version>1.0.0</version>

                <parent>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-parent</artifactId>
                    <version>1.2.1.RELEASE</version>
                </parent>
                <properties>
                    <wicket.version>6.18.0</wicket.version>
                </properties>
                <dependencies>
                    <dependency>
                        <groupId>org.apache.wicket</groupId>
                        <artifactId>wicket-core</artifactId>
                        <version>${wicket.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.apache.wicket</groupId>
                        <artifactId>wicket-spring</artifactId>
                        <version>${wicket.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.apache.wicket</groupId>
                        <artifactId>wicket-extensions</artifactId>
                        <version>${wicket.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.apache.wicket</groupId>
                        <artifactId>wicket-auth-roles</artifactId>
                        <version>${wicket.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.wicketstuff</groupId>
                        <artifactId>wicketstuff-htmlcompressor</artifactId>
                        <version>6.18.0</version>
                    </dependency>
                    <dependency>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-starter</artifactId>
                    </dependency>
                    <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-context</artifactId>
                    </dependency>
                    <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-tx</artifactId>
                    </dependency>
                    <dependency>
                        <groupId>org.springframework.data</groupId>
                        <artifactId>spring-data-neo4j</artifactId>
                    </dependency>
                    <dependency>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-starter-data-rest</artifactId>
                    </dependency>
                    <dependency>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-starter-test</artifactId>
                        <scope>test</scope>
                    </dependency>
                    <dependency>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-starter-web</artifactId>
                    </dependency>
                    <dependency>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-starter-jetty</artifactId>
                    </dependency>
                    <dependency>
                        <groupId>org.hibernate</groupId>
                        <artifactId>hibernate-validator</artifactId>
                    </dependency>
                    <dependency>
                        <groupId>org.apache.commons</groupId>
                        <artifactId>commons-lang3</artifactId>
                        <version>3.3.2</version>
                    </dependency>
                    <dependency>
                        <groupId>joda-time</groupId>
                        <artifactId>joda-time</artifactId>
                        <version>2.6</version>
                    </dependency>
                    <!-- Javax Mail -->
                    <dependency>
                        <groupId>javax.mail</groupId>
                        <artifactId>mail</artifactId>
                        <version>1.4</version>
                    </dependency>

                    <!-- Geocoding -->
                    <dependency>
                        <groupId>com.google.code.geocoder-java</groupId>
                        <artifactId>geocoder-java</artifactId>
                        <version>0.16</version>
                    </dependency>
                    <dependency>
                        <groupId>org.springframework.data</groupId>
                        <artifactId>spring-data-neo4j-rest</artifactId>
                        <version>3.2.1.RELEASE</version>
                    </dependency>
                    <dependency>
                        <groupId>com.vaynberg.wicket.select2</groupId>
                        <artifactId>wicket-select2</artifactId>
                        <version>2.3</version>
                    </dependency>
                    <!-- Commons -->
                    <dependency>
                        <groupId>commons-collections</groupId>
                        <artifactId>commons-collections</artifactId>
                    </dependency>
                    <dependency>
                        <groupId>org.neo4j</groupId>
                        <artifactId>neo4j-spatial</artifactId>
                        <version>0.9</version>
                    </dependency>
                </dependencies>

                <build>
                    <resources>
                        <resource>
                            <!-- Copy wicket HTML and other resource files from the java directory -->
                            <filtering>false</filtering>
                            <directory>${basedir}/src/main/java</directory>
                            <includes>
                                <include>**/*.html</include>
                                <include>**/*.js</include>
                                <include>**/*.png</include>
                                <include>**/*.css</include>
                                <include>**/*.jpg</include>
                                <include>**/*.properties</include>
                            </includes>
                            <excludes>
                                <exclude>**/*.java</exclude>
                            </excludes>
                        </resource>
                        <resource>
                            <directory>${basedir}/src/main/resources</directory>
                        </resource>
                    </resources>
                    <plugins>
                        <plugin>
                            <artifactId>maven-compiler-plugin</artifactId>
                            <version>3.1</version>
                        </plugin>
                        <plugin>
                            <groupId>org.springframework.boot</groupId>
                            <artifactId>spring-boot-maven-plugin</artifactId>
                        </plugin>
                    </plugins>
                </build>

                <repositories>
                    <repository>
                        <id>spring-releases</id>
                        <name>Spring Releases</name>
                        <url>http://repo.spring.io/libs-release</url>
                    </repository>
                    <repository>
                        <id>neo4j-public-release-repository</id>
                        <url>http://m2.neo4j.org/releases</url>
                        <snapshots>
                            <enabled>false</enabled>
                        </snapshots>
                    </repository>
                </repositories>

                <pluginRepositories>
                    <pluginRepository>
                        <id>spring-releases</id>
                        <name>Spring Releases</name>
                        <url>http://repo.spring.io/libs-release</url>
                    </pluginRepository>
                </pluginRepositories>

            </project>

neo4j可控硅脱扣器
https://raw.github.com/neo4j-contrib/m2/master/releases
符合事实的
错误的
neo4j contrib快照
https://raw.github.com/neo4j-contrib/m2/master/snapshots
错误的
符合事实的
依赖

            <repository>
                        <id>neo4j-contrib-releases</id>
                        <url>https://raw.github.com/neo4j-contrib/m2/master/releases</url>
                        <releases>
                            <enabled>true</enabled>
                        </releases>
                        <snapshots>
                            <enabled>false</enabled>
                        </snapshots>
                    </repository>
                    <repository>
                        <id>neo4j-contrib-snapshots</id>
                        <url>https://raw.github.com/neo4j-contrib/m2/master/snapshots</url>
                        <releases>
                            <enabled>false</enabled>
                        </releases>
                        <snapshots>
                            <enabled>true</enabled>
                        </snapshots>
                    </repository>

org.neo4j
neo4j空间
0.13-neo4j-2.1.2

能否提供mvn dependency:tree的输出?太大,无法粘贴到此处。我用弹簧靴。
                <dependency>
                    <groupId>org.neo4j</groupId>
                    <artifactId>neo4j-spatial</artifactId>
                    <version>0.13-neo4j-2.1.2</version>
                </dependency>