摘要:
Mybatis内置的ExecutorType有3种,SIMPLE、REUSE、BATCH; 默认的是simple,该模式下它为每个语句的执行创建一个新的预处理语句,单条提交sql;而batch模式重复使用已经预处理的语句,并且批量执行所有更新语句,显然batch性能将更优;但batch模式也有自己的 阅读全文
摘要:
@Component public class ImplementSubformFactory implements ApplicationContextAware { private static Map<String, ImplementSubformService> productMap = 阅读全文