mybatis与spring集成中SqlSessionFactory创建流程

        Mybatis作为优秀且广泛使用的轻量级持久层框架经常与Spring集成一起使用,集成过程中sqlSessionFactory的创建流程是什么样的呢?本文结合mybatis、mybatis-spring源码以及UML时序图的方式阐述如何进行:

以下为Mybatis与Spring集成的部分配置,主要是涉及SqlSessionFactory bean:

	
		
		
		
	
	
	 
      
          
    
	
	
		
		
	

        Spring在进行bean的相关注入过程中,以下是SqlSessionFactory bean创建UML时序图:

mybatis与spring集成中SqlSessionFactory创建流程_第1张图片

说明:

1)首先MapperScannerConfigurer在basePackage下scan对应关于Mapper配置文件的interface,实例化为MapperFactoryBean;

2)SqlSessionFactoryBean在完成依赖注入后,在afterPropertiesSet方法中创建SqlSessionFactory示例,其过程也就是解析mybatis-config.xml以及*.xml的过程,XMLConfigBuilder在parse之前,优先将SqlSessionFactoryBean注入的objectFactory、objectWrapperFactory、typeAliasesPackage、typeAliases、plugins、typeHandlersPackage、typeHandlers属性实例添加到Configuration对象中,XMLConfigBuilder解析完成后,设置其关联的Configuration示例的transactionFactory、databaseIdProvider属性。

    if (this.transactionFactory == null) {
      this.transactionFactory = new SpringManagedTransactionFactory();
    }

    configuration.setEnvironment(new Environment(this.environment, this.transactionFactory, this.dataSource));

    if (this.databaseIdProvider != null) {
      try {
        configuration.setDatabaseId(this.databaseIdProvider.getDatabaseId(this.dataSource));
      } catch (SQLException e) {
        throw new NestedIOException("Failed getting a databaseId", e);
      }
    }

完成SqlSessionFactory的 bean创建;

3)sqlSessionTemplate获取sqlSessionFactory实例进行依赖注入,以方便使用mybatis相应的数据库操作。 

你可能感兴趣的:(spring,mybatis,mybatis)