mybatis 有哪些执行器(executor)?
时间: 2023-04-30 17:00:09 浏览: 200
Mybatis中SqlSession下的四大对象之执行器(executor)
Mybatis有三种执行器(executor):SimpleExecutor、ReuseExecutor和BatchExecutor。其中SimpleExecutor是默认的执行器,每次执行SQL语句都会创建一个Statement对象;ReuseExecutor会重用Statement对象,提高执行效率;BatchExecutor则是批量执行多个SQL语句。可以通过配置文件中的<setting name="defaultExecutorType" value="xxx"/>来指定使用哪种执行器。
阅读全文