我可以在 hibernate 和 MySql 中使用 `ST_Buffer` 吗?

问题描述 投票:0回答:1

我有一个关于休眠空间的问题。 (我使用的是休眠版本6.1.7.Final)

官方hibernate文档说不支持MySql的St_Buffer,

    @Query("""
            SELECT co
            FROM example AS co
            WHERE st_contains(st_buffer(:center, :radius), co.point)
            """)
    List<CoordinateEntity> findAllWithInCircleArea(@Param("center") final Point center,
                                                   @Param("radius") final int radius);

当我写出这样的代码时,

@Test
    void findAllWithInCircle() {
        //given
        final Point point = geometryFactory.createPoint(new Coordinate(20, 10));
        point.setSRID(4326);
        final CoordinateEntity ce1 = repository.save(new CoordinateEntity(point));

        final Point point2 = geometryFactory.createPoint(new Coordinate(40, 40));
        point2.setSRID(4326);
        repository.save(new CoordinateEntity(point2));

        //when
        final List<CoordinateEntity> allContainArea = repository.findAllWithInCircleArea(point,10000);

        //then
        assertSoftly(softAssertions -> {
            assertThat(allContainArea).hasSize(1);
            assertThat(allContainArea.get(0)).isEqualTo(ce1);
            assertThat(allContainArea.get(0).getPoint().getX()).isEqualTo(20);
            assertThat(allContainArea.get(0).getPoint().getY()).isEqualTo(10);
        });
    }

此测试代码运行良好。 这不是说明ST_Buffer工作正常了吗?

当我运行测试代码时,我看到选择已创建得很好。

 select
        c1_0.id,
        c1_0.point 
    from
        example c1_0 
    where
        st_contains(st_buffer(?,?),c1_0.point)

我现在很迷茫, 我希望有人能告诉我 hibernate 文档中的 X 是什么意思。

我已经阅读并重新阅读了 hibernate 文档,但我似乎没有理解正确。

mysql hibernate spatial spatial-query hibernate-spatial
1个回答
0
投票

文档不是最新的。

我查了代码,支持st_buffer。所以你的代码没问题。

© www.soinside.com 2019 - 2024. All rights reserved.