在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的执行器类型,因此在调整配置时需要谨慎考虑。