gpt4 book ai didi

java - spring boot数据mongodb中的GeoJsonPoint抛出错误

转载 作者:行者123 更新时间:2023-11-30 06:53:30 24 4
gpt4 key购买 nike

我在使用 Spring Boot Data MongoDB 时遇到问题。

我用下面的 dto 附加了我的代码。每次我尝试使用 GeoJsonPoint 对象插入新文档时,都会收到 com.mongodb.WriteConcernException: Write failed with error code 16804 和错误消息“需要位置对象,位置数组格式不正确” 异常。

import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.geo.GeoJsonPoint;
import org.springframework.data.mongodb.core.index.GeoSpatialIndexed;
import org.springframework.data.mongodb.core.mapping.Document;

import java.util.Date;

@Document(collection = "collection_2")
public class SingleBusStop {

@Id
private String id;

@GeoSpatialIndexed
private GeoJsonPoint location;

private DayType dayType;

private String lineNumber;

//getters, setters

}

我在同一个项目中得到了一些其他集合,我在其中插入了一些没有问题的数据(也使用 GeoJsonPoint)。由于某种原因,我无法将数据插入到 collection_2 中。我使用的是 Mongo 3.4.2。我的 pom.xml 如下所示:

<groupId>pl.server.map</groupId>
<artifactId>Utils</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.0.RELEASE</version>
</parent>

<dependencies>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.5</version>
</dependency>

<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.15</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.7</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>

</dependencies>

更新

@GeoSpatialIndex

默认为2d索引,为了避免出现问题,必须将其设置为2dsphere - 如果出现此问题,只需在注释中切换索引类型:

@GeoSpatialIndexed(type = GeoSpatialIndexType.GEO_2DSPHERE)

最佳答案

关于this thread中的答案

MongoDB 2d index requires the legacy coordinates pairs format, which is just an array of coordinates like [1, 2]

因此您可能需要更改字段 SingleBusStop.location 的类型。

GeoSpatialIndexed允许进行一些配置,参数“name”可能会有所帮助。

关于java - spring boot数据mongodb中的GeoJsonPoint抛出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42261741/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com