gpt4 book ai didi

java - com.mysql.cj.jdbc.exceptions.CommunicationsException : The last packet successfully received from the server was XXXXXXXXXXXX milliseconds ago

转载 作者:行者123 更新时间:2023-11-29 09:44:11 36 4
gpt4 key购买 nike

我有一个不使用连接池的 Spring Boot 应用程序,我们不想在每个请求时打开数据库连接

因此,这是我们在名为 MySQLService 的类中拥有的内容,该类具有数据库查询方法:

    @Autowired
@Qualifier("mysqlDB")
private Connection connection;

connection对象始终在所有带有查询的方法中使用。

在 MySQLConnection 类中,

 @Bean(name = "mysqlDB")
public Connection getConnection() {
Connection connection = null;
try {
Class.forName(mysqlDriver);
LOGGER.debug("get mysql connection...");
connection = DriverManager
.getConnection(jdbcUrl,
user, password);
} catch (Exception exception) {
LOGGER.error("ERROR :: {}", exception);
}
return connection;
}
}

所以,我们从来没有真正关闭连接,它是由 spring 上下文管理的,但由于我们没有使用 JDBCTemplates,所以它不会被关闭。我们在连接字符串中将 autoreconnect 设置为 true

在一两天内,我们得到了异常:

com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 61,183,452 milliseconds ago.

我知道这是因为 SQL Server 设置了连接生存期,因此它使连接过期,但是有什么方法可以在不使用连接池的情况下处理此问题

最佳答案

安排每 6 小时左右对 MySQL 服务器执行一次 ping 操作,执行以下查询:select 1 from Dual。为此,您需要启用调度:

@Configuration
@EnableScheduling
public class SpringConfig {
//...
}

然后:

@Scheduled(cron = "0 */6 * * *")
public void schedulePingMySQL() {
// execute `select 1 from dual`
}

无论如何,使用连接池是推荐的方式。在这种情况下,代码可能如下所示:

 @Autowired
private DataSource dataSource;

public void save (Dto dto) {
Connection con = dataSource.getConnection();
// finally, close the connection
}

关于java - com.mysql.cj.jdbc.exceptions.CommunicationsException : The last packet successfully received from the server was XXXXXXXXXXXX milliseconds ago,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56015657/

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