update sql error(2013), msg: sql error: lost connection to mysql server duri
时间: 2023-08-20 21:03:10 浏览: 92
出现"update sql error(2013), msg: sql error: lost connection to mysql server duri"这个错误,意味着连接到MySQL服务器的连接在执行更新SQL时丢失了。这通常是由于以下几个原因引起的:
1. 数据库服务器故障:可能是数据库服务器出现了故障或断开连接,导致客户端无法与服务器通信。
2. 网络问题:可能是客户端与服务器之间的网络连接出现问题,例如网络延迟、丢包或网络断开。
3. 连接超时:如果执行的SQL查询需要花费很长时间,超出了连接的超时限制,连接可能会被自动关闭。
如果遇到这个错误,可以尝试以下解决方法:
1. 检查数据库服务器是否正常运行,确保数据库服务没有启动问题或其他故障。
2. 检查网络连接是否正常。可以尝试重新连接或者重启网络连接来解决问题。
3. 检查连接超时的设置,如果查询需要较长时间,可以尝试增加连接超时的时间限制。
4. 如果以上方法都无效,可能需要联系数据库管理员或者服务器提供商来进一步排查问题。
总的来说,这个错误表明数据库连接在执行更新SQL时丢失,原因可能是数据库服务器故障、网络问题或连接超时等。通过检查服务器和网络连接,以及调整连接超时的设置,通常可以解决这个问题。
相关问题
mybatis-plus整合duri
非常感谢您的提问。关于mybatis-plus整合durid,您可以参考以下代码:
1.首先,在pom.xml文件中添加以下依赖:
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.0.7.1</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.10</version>
</dependency>
2.在application.yml文件中添加以下配置:
spring:
datasource:
url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2B8
username: root
password: root
driver-class-name: com.mysql.cj.jdbc.Driver
type: com.alibaba.druid.pool.DruidDataSource
druid:
initial-size: 5
min-idle: 5
max-active: 20
max-wait: 60000
time-between-eviction-runs-millis: 60000
min-evictable-idle-time-millis: 300000
validation-query: SELECT 1 FROM DUAL
test-while-idle: true
test-on-borrow: false
test-on-return: false
pool-prepared-statements: true
max-pool-prepared-statement-per-connection-size: 20
filters: stat,wall,log4j
3.在MybatisPlusConfig.java文件中添加以下配置:
@Configuration
@MapperScan("com.example.demo.mapper")
public class MybatisPlusConfig {
@Bean
public PaginationInterceptor paginationInterceptor() {
return new PaginationInterceptor();
}
@Bean
public PerformanceInterceptor performanceInterceptor() {
PerformanceInterceptor performanceInterceptor = new PerformanceInterceptor();
//格式化sql语句
Properties properties = new Properties();
properties.setProperty("format", "true");
performanceInterceptor.setProperties(properties);
return performanceInterceptor;
}
}
以上就是整合mybatis-plus和durid的配置方法,希望对您有所帮助。
阅读全文