在 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。