要将 PostGIS 集成到 Spring Boot 应用程序中,需要按照以下步骤进行操作:
1. 将 PostGIS JDBC 驱动程序添加到项目依赖项中。可以在 Maven 或 Gradle 中添加以下依赖项:
Maven:
```xml
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.18</version>
</dependency>
<dependency>
<groupId>org.postgis</groupId>
<artifactId>postgis-jdbc</artifactId>
<version>2.5.3</version>
</dependency>
```
Gradle:
```groovy
implementation 'org.postgresql:postgresql:42.2.18'
implementation 'org.postgis:postgis-jdbc:2.5.3'
```
2. 在应用程序的配置文件中添加 PostGIS 数据库连接信息,例如:
```properties
spring.datasource.url=jdbc:postgresql://localhost:5432/mydatabase
spring.datasource.username=myusername
spring.datasource.password=mypassword
spring.datasource.driver-class-name=org.p