85、UncategorizedSQLException 报错
出现问题的原因:
本身是没有这个问题的,后来服务器上的一张表,被误删了,重新创建之后,就出现了这个问题
org.springframework.jdbc.UncategorizedSQLException:
### Error updating database. Cause: java.sql.SQLException: Statement violates GTID consistency: Updates to non-transactional tables can only be done in either autocommitted statements or single-statement transactions, and never in the same statement as updates to transactional tables.
### The error may involve com.mintel.teacher.mapper.MintMapper.updateUserextend-Inline
### The error occurred while setting parameters
定位到代码中的位置:
代码报错显示
applyObjectMapper.insert(applyObject); 插入语句报错
public Result<?> addOneOrCode(RequestCs cs) {
xxx
xxxx
xxx
String objectId = applyObjectMapper.getSelectQueryno(orCodeList.getClueid(), item.getQueryno());
xxx
xxx
if (ObjectUtil.isNull(objectId) || "".equals(objectId)) {
applyObjectMapper.insert(applyObject);
} else {
applyObject.setId(objectId);
}
List<QueryItem> queryItemList = item.getQueryItemList();
return result.ok();
}
查看报错位置中,发现上面更新了一张表,下面又更新了一张表的数据,下面这条数据报错了
然后查看数据库发现这两张表的 ENGINE分别为 InnoDB(第一张表)、MyISAM(第二张表)
InnoDB: Supports transactions, row-level locking, and foreign keys 即支持事务、行级锁和外键,而MyISAM是不支持事务的。
把两个都改成InnoDB就可以了
注意事项:对非事务性表的更新只能在自动提交语句或单语句事务中进行,而且永远不要在同一个语句中更新事务表。