在MyBatis中,可以通過配置文件或代碼來調整ExecutorType的配置。ExecutorType是MyBatis中的一個枚舉類型,用來表示不同的執行器類型,包括SIMPLE、REUSE和BATCH。
<settings>
<setting name="defaultExecutorType" value="REUSE"/>
</settings>
這樣就將默認的ExecutorType設置為REUSE。
Configuration configuration = sqlSessionFactory.getConfiguration();
configuration.setDefaultExecutorType(ExecutorType.REUSE);
這樣就將默認的ExecutorType設置為REUSE。
需要注意的是,ExecutorType的配置會影響整個MyBatis的執行器類型,因此在調整配置時需要謹慎考慮。