大家可能使用 Mybatis 时很少关注程序是通过什么启动的 Mybatis 初始化,现在我就说下Mybatis 初始化的入口以及寻找过程
首先想到的是从 Mybatis spring的配置文件入手,首先发现如下配置
<!-- mybatis和spring完美整合,不需要mybatis的配置映射文件 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="configLocation" value="classpath:spring/mybatis-config.xml"/>
<property name="dataSource" ref="dynamicDataSource"/>
<!-- 自动扫描mapping.xml文件 -->
<property name="mapperLocations" value="classpath*:com/me/ssm/dao/*.xml"/>
<property name="typeAliasesPackage" value="com.me.ssm.model"/>
</bean>
于是考虑初始化入口可能是在 SqlSessionFactoryBean 的创建过程中
于是先找 SqlSessionFactoryBean 构造方法,没有发现
然后再找几个属性初始化过程中有没有调用什么方法,一一查看后仍然没有什么发现
于是思考是不是 Mybatis 是不是使用了 spring 提供的一些在 bean 创建前后使用的方法
于是查到 Spring 允许在 Bean 在初始化完成后以及 Bean 销毁前执行特定的操作,常用的设定方式有以下三种:
InitializingBean/DisposableBean,init-method/destroy-method,@PostConstruct 或@PreDestroy
于是查看 SqlSessionFactoryBean 源码,发现
SqlSessionFactoryBean 继承了 InitializingBean 接口,于是继续找 InitializingBean 接口的初始化方法 afterPropertiesSet
发现一下代码
/**
* {@inheritDoc}
*/
@Override
public void afterPropertiesSet() throws Exception {
notNull(dataSource, "Property 'dataSource' is required");
notNull(sqlSessionFactoryBuilder, "Property 'sqlSessionFactoryBuilder' is required");
state((configuration == null && configLocation == null) || !(configuration != null && configLocation != null),
"Property 'configuration' and 'configLocation' can not specified with together");
this.sqlSessionFactory = buildSqlSessionFactory();
}
看来,这个方法就是 Mybatis 初始化的入口了