【Mybatis】出现The error may involve defaultParameterMap错误【已解决】

错误详情:

Navicat中sql语句执行没有问题,在eclipse里运行的时候就会报错

报错内容:

### Error updating database.  Cause: java.sql.SQLException: Lock wait timeout exceeded; try restarting transaction

### The error may involve defaultParameterMap
### The error occurred while setting parameters

...

com.alibaba.druid.pool.GetConnectionTimeoutException: wait millis 60000, active 250, maxActive 250, runningSqlCount 404

出错原因:

左链接查询时用的字段名称和已有的字段名称重复,Navicat里字段重复时会自动区分,mybatis里只能手动修改该字段名称

 

 

延伸阅读:

druid连接不释放问题 

druid出现连接暴增超时无法访问的问题

你可能感兴趣的:(mybatis)