1.mybatis有三种executor执行器,分别为simpleexecutor、reuseexecutor、batchexecutor。
simpleexecutor执行器:在每执行一次update或select,就开启一个statement对象,用完后就关闭。
reuseexecutor执行器:在执行update或select时以sql作为key去查找statement,有就直接使用,没有就创建,使用完毕后不关闭,放入Map<String,Statement>中,供下次使用。重复使用statement。
batchexecutor执行器:执行update(jdbc批处理不支持select),会把所有sql添加到批处理中addbatch();等待统一批处理executorbatch();它缓存了·多个statement,每一个statement都是addbatch(),后等待进行executorbatch()批处理。
作用范围:统一限制在sqlsession生命周期范围内。
Mybatis都有哪些Executor执行器?它们之间的区别是什么?
最新推荐文章于 2024-09-14 13:20:44 发布