微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java.sql.SQLNonTransientConnectionException:无法创建到数据库服务器的连接 - Google Cloud Platform

如何解决java.sql.SQLNonTransientConnectionException:无法创建到数据库服务器的连接 - Google Cloud Platform

我正在尝试创建一个 Spring Boot 应用程序,该应用程序将一些数据插入到 GCP MysqL 中。但是每次我尝试运行应用程序时,它都会显示异常 -

  java.sql.sqlNonTransientConnectionException: Could not create connection to database server.
Caused by: java.io.IOException: The Application Default Credentials are not available. They are available if running in Google Compute Engine. Otherwise,the environment variable GOOGLE_APPLICATION_CREDENTIALS must be defined pointing to a file defining the credentials

现在以下是我的 application.properties 文件。此处未定义实际参数-

     spring.cloud.gcp.sql.database-name=DemoDatabase
        spring.cloud.gcp.sql.instance-connection-name=xxxxxxxxxxx
        spring.datasource.initialization-mode=always
spring.cloud.gcp.credentials.location=C:/Users/utkar/Downloads/spring-boot-7208e0222fb1.json
    spring.datasource.url=jdbc:MysqL://google/DemoDatabase?cloudsqlInstance=XXXXXXXXXXX&socketFactory=com.google.cloud.sql.MysqL.socketFactory&useSSL=false
        spring.datasource.username=XXXXX
        spring.datasource.password=XXXXXX

请帮忙。提前致谢

解决方法

在 CLI 上运行以下命令:

gcloud auth application-default login

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。