gpt4 book ai didi

java - 与 Google Cloud SQL 的连接间歇性断开

转载 作者:行者123 更新时间:2023-11-29 03:27:06 24 4
gpt4 key购买 nike

我正在使用使用 Java-SQL 连接器的 Google Cloud SQL。我面临的问题是与数据库的连接意外断开。在谷歌搜索时我遇到了这个 question并尝试了同一问题中建议的解决方案。

In your console click the project, on the left side click Storage > CloudSQL then click on your database name. You will see an 'Edit' button on top. Click that and scroll down to Activation Policy, change it to Always On and then click save.

但我仍然面临同样的问题。幸运的是,我一直在 Google App Engine 上保存日志,并且附上了连接数据库时发生的异常的快照。

Google App Engine Log For Cloud SQL connection drop

我在下面发布的代码要点用于建立与数据库的连接。

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.StringTokenizer;
import java.util.logging.Logger;

import com.google.appengine.api.utils.SystemProperty;
import static com.google.appengine.api.utils.SystemProperty.environment;
import static com.google.appengine.api.utils.SystemProperty.Environment.Value.Development;
import static com.google.appengine.api.utils.SystemProperty.Environment.Value.Production;

Connection con=null;
SystemProperty.Environment.Value env = environment.value();
if(env == Production)
{
System.out.println("Inside Production Phase");
// Load the class that provides the new "jdbc:google:mysql://" prefix.
Class.forName("com.mysql.jdbc.GoogleDriver");
url = "jdbc:google:mysql://<my-project-id>:<cloud-sql-instance>/<database-name>?user=<user-name>&password=<database-password>&useUnicode=true&characterEncoding=UTF-8";
}//if
else if(env == Development)
{
System.out.println("Inside Development Phase");
// This will load the MySQL driver, each DB has its own driver
Class.forName("com.mysql.jdbc.Driver");
url = "jdbc:mysql://127.0.0.1:3306/<database-name>?user=root";
}//else if
con = DriverManager.getConnection(url);

有没有人遇到同样的问题,求助

最佳答案

获得临时修复,在连接到 Google Cloud SQL 时使用了以下参数

url = "jdbc:google:mysql://my-app:mysql2/project-name?user=root&password=password&autoReconnect=true&failOverReadOnly=false&maxReconnects=10";

引用网址: https://dev.mysql.com/doc/connector-j/5.1/en/connector-j-reference-configuration-properties.html

关于java - 与 Google Cloud SQL 的连接间歇性断开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34633515/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com