我正在尝试在Spring Boot应用程序中使用H2GIS扩展来建立内存中的H2数据库。
我的build.gradleapplication.properties在下面提供。
根据H2GIS documentation和大量示例,扩展名必须按以下方式初始化:

CREATE ALIAS IF NOT EXISTS H2GIS_SPATIAL FOR "org.h2gis.functions.factory.H2GISFunctions.load";
CALL H2GIS_SPATIAL();


在我的情况下,第一个命令成功执行,但是第二个命令给出错误:

Syntax error in SQL statement "CREATE DOMAIN IF NOT EXISTS POINT AS GEOMETRY(1[*]) CHECK (ST_GEOMETRYTYPECODE(VALUE) = 1);"; SQL statement:
CREATE DOMAIN IF NOT EXISTS POINT AS GEOMETRY(1) CHECK (ST_GeometryTypeCode(VALUE) = 1); [42000-200] 42000/42000 (Help)


当执行类registerGeometryType的方法org.h2gis.functions.factory.H2GISFunctions时,会发生这种情况。由于某种原因,无法执行该方法中组成的SQL语句。

到目前为止,我已经尝试通过将SQL命令放入src/main/resources/data.sql并在h2-console中手动运行它们来初始化扩展。我还尝试使用不同版本的H2GIS:1.4.0和1.5.0。所有尝试都给我相同的效果。

当我尝试运行H2GIS quickstart guide中所示的独立H2GIS时,它运行良好。

为了最小化问题的范围,我从头开始创建了一个最小的Spring Boot应用程序。这是我的build.gradle

plugins {
    id 'org.springframework.boot' version '2.2.5.RELEASE'
    id 'io.spring.dependency-management' version '1.0.9.RELEASE'
    id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

repositories {
    mavenCentral()
}

dependencies {
    compile group: 'org.hibernate', name: 'hibernate-spatial', version: '5.4.10.Final'
    compile group: 'org.orbisgis', name: 'h2gis', version: '1.5.0'
    runtimeOnly 'com.h2database:h2'

    implementation 'org.springframework.boot:spring-boot-starter-web'
    implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
    implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
    testImplementation('org.springframework.boot:spring-boot-starter-test') {
        exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
    }
}

test {
    useJUnitPlatform()
}


我的application.properties

spring.application.name=demo-h2gis
server.port=8080

spring.datasource.url=jdbc:h2:mem:demoh2gis
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=

spring.jpa.database-platform=org.hibernate.spatial.dialect.h2geodb.GeoDBDialect
spring.jpa.hibernate.ddl-auto=create-drop

spring.h2.console.enabled=true

spring.main.allow-bean-definition-overriding=true


...以及应用程序本身:

@SpringBootApplication
@EnableAutoConfiguration
public class DemoH2gisApplication {
    public static void main(String[] args) {
        SpringApplication.run(DemoH2gisApplication.class, args);
    }
}


可能是什么问题?

最佳答案

H2GIS版本只能与某些确切的H2数据库版本一起使用。对于H2GIS 1.5.0,需要一个过时且不受支持的H2 1.4.197,但是您使用的是最新发布的H2 1.4.200,并且H2GIS 1.5.0在许多方面都与它不兼容。您需要在build.gradle中指定H2的1.4.197版本。

10-05 18:45