1

我用 Java 创建了一个 Spring Boot 项目,它与我的本地数据库完美配合,但我无法将它连接到我的 GCP postgres 云 SQL 实例。

我已按照以下步骤操作:https ://cloud.spring.io/spring-cloud-gcp/multi/multi__spring_jdbc.html 我还在 pom.xml 中进行了必要的更改。我需要在 application.properties 文件中更改什么吗?

spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.PostgreSQLDialect
spring.jpa.hibernate.ddl-auto=none
spring.jpa.hibernate.show-sql=true
spring.datasource.url=jdbc:postgresql://localhost:5432/postgres
spring.datasource.username=postgres
spring.datasource.password=postgres
spring.datasource.initialization-mode=always
spring.datasource.initialize=true
spring.datasource.schema=classpath:/schema.sql
spring.datasource.continue-on-error=true

我希望我的项目能够正常工作,指向云数据库。

4

1 回答 1

1

取决于您使用的云。

您创建的数据库有端点。

您必须放置该端点链接而不是本地主机。spring.datasource.url=jdbc:postgresql://(put your end point here instead of localhost):5432/postgres

确保您的数据库名称应与链接中的相同。

如果您在那里使用 Spring,那么您应该首先创建数据库开发环境。

除了在 Pom.xml 中,您还需要添加云的依赖关系。

如果您想访问该数据库,那么您必须使用 JackDB 平台。

感谢和问候,

杰瑞兰克

于 2019-05-22T09:08:54.567 回答