空间类型

Spring Data Neo4j 支持以下空间类型

支持的转换

  • Spring Data common 的 Point(**必须**是数据库中的 WGS 84-2D/SRID 4326 点)

  • GeographicPoint2d(WGS84 2D/SRID 4326)

  • GeographicPoint3d(WGS84 3D/SRID 4979)

  • CartesianPoint2d(笛卡尔 2D/SRID 7203)

  • CartesianPoint3d(笛卡尔 3D/SRID 9157)

派生查找器关键字

如果您正在使用原生 Neo4j Java 驱动程序 org.neo4j.driver.types.Point 类型,则可以在派生查找器方法中使用以下关键字和参数类型。

查询区域内的点

  • findBy[…​]Within(org.springframework.data.geo.Circle circle)

  • findBy[…​]Within(org.springframework.data.geo.Box box)

  • findBy[…​]Within(org.springframework.data.neo4j.repository.query.BoundingBox boundingBox)

您也可以使用 org.springframework.data.geo.Polygon,但需要通过调用 BoundingBox#of 将其传递给 BoundingBox

查询某个点附近的点

  • findBy[…​]Near(org.neo4j.driver.types.Point point) - 返回按到给定点的距离升序排序的结果

  • findBy[…​]Near(Point point, org.springframework.data.geo.Distance max)

  • findBy[…​]Near(Point point, org.springframework.data.domain.Range<Distance> between)

  • findBy[…​]Near(Range<Distance> between, Point p)