mybatis 反射模块学习

mybatis按照层次可以划分为 一下三个层次
接口层(SqlSession)、
核心处理层(配置解析、参数映射、sql解析、SQL执行、结果集映射、插件)、
基础支持层(数据源模块、事务管理模块、缓存模块、Binding模块、反射模块、类型转换、日志模块、资源加载、解析器模块)。

*本文主要讲解反射模块。*

mybatis 反射模块学习_第1张图片
mybatis 反射模块学习_第2张图片
mybatis 反射模块学习_第3张图片
mybatis 反射模块学习_第4张图片
mybatis 反射模块学习_第5张图片

/**
 * MyBatis uses an ObjectFactory to create all needed new Objects.
 * 
 * @author Clinton Begin
 */
public interface ObjectFactory {

  /**
   * Sets configuration properties.
   * @param properties configuration properties
   */
  void setProperties(Properties properties);

  /**
   * Creates a new object with default constructor. 
   * @param type Object type
   * @return
   */
  <T> T create(Class<T> type);

  /**
   * Creates a new object with the specified constructor and params.
   * @param type Object type
   * @param constructorArgTypes Constructor argument types
   * @param constructorArgs Constructor argument values
   * @return
   */
  <T> T create(Class<T> type, List<Class<?>> constructorArgTypes, List<Object> constructorArgs);
  
  /**
   * Returns true if this object can have a set of other objects.
   * It's main purpose is to support non-java.util.Collection objects like Scala collections.
   * 
   * @param type Object type
   * @return whether it is a collection or not
   * @since 3.1.0
   */
  <T> boolean isCollection(Class<T> type);
}

你可能感兴趣的:(mybatis源码学习)