在 MyBatis 中设置 ExecutorType 有两种方法:
<settings>
<setting name="executorType" value="REUSE"/>
</settings>
其中,executorType 的值可以是 SIMPLE、REUSE 或 BATCH,分别代表不同的 ExecutorType。默认值是 SIMPLE。
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream, "REUSE");
以上代码中的第二个参数就是指定的 ExecutorType,可以是 SIMPLE、REUSE 或 BATCH。