# 简介
今天在合并微服务的过程中遇到了一个没遇到过的异常, 特此记录一下.
# 异常日志
SqlExceptionHelper : SQL Error: 1030, SQLState: HY000
SqlExceptionHelper : Got error 122 - 'Internal (unspecified) error in handler' from storage engine
# 异常抛出点
Caused by: java.sql.SQLException: Got error 122 - 'Internal (unspecified) error in handler' from storage engine
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129)
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953)
at com.mysql.cj.jdbc.ClientPreparedStatement.executeQuery(ClientPreparedStatement.java:1003)
at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeQuery(ProxyPreparedStatement.java:52)
at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeQuery(HikariProxyPreparedStatement.java)
# 解决方案
网上有许多帖子提到了 MySQL
缓存方面的问题, 调查云数据库的监控后对这个推断表示怀疑.
由于合并前后的微服务使用的是同一台数据库进行测试的, 因此只需要检出合并前的代码, 再运行一次完整的测试, 就可以确认不是由于缓存造成的问题了.
后来将运行时的 SQL
打印出来, 发现是由于合并微服务前后字段的命名方式不同引发的问题.
解决方案也很简单, 重新指定一下 @Colume
注解的 name
属性就行了.
# 推广
欢迎加入 Spring Cloud 交流群: 617143034 (opens new window)
欢迎大家点击下方的图片领取限量 阿里云优惠券 (opens new window), 新购续费更优惠: (opens new window)