spring与mybatis的几种整合方式。

1. 使用sqlSessionTemplate方式整合。

其中:applicationContext.xml 实例配置如下


    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
                            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd  
                           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
    
    
    
             class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        
            classpath:properties/jdbc.properties
        

    


    
        
        
        
        
    


             class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        
    


    
        
        
    


    
        
    


    
    
        
            
        

    

    
        
    

1.1 spring容器启动时加载jdbc.porperties

1.2 spirng创建数据源

1.3 根据数据源创建SqlSessionFactoryBean和DataSourceTransactionManager

1.4 根据sessionFactoryBean创建sqlSessionTemplate。

      这里主要介绍sqlSessionTemplate执行的一个流程

      sqlSessionTemplate为sqlSession的实现类。(其中sqlSession接口定义了对数据库操作的接口方法)

     其中sqlSession的实现类主要是调用sqlSessionProxy代理对象实现的。

     下面讲述一下sqlSessionProxy对象的生成过程。

      注意下面的代码:

      this.sqlSessionProxy = (SqlSession) Proxy.newProxyInstance(
                SqlSessionFactory.class.getClassLoader(), /
                new Class[] { SqlSession.class },
                new SqlSessionInterceptor());

   

    代理方法为:

    private class SqlSessionInterceptor implements InvocationHandler {
        public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
            final SqlSession sqlSession = SqlSessionUtils.getSqlSession(
                    SqlSessionTemplate.this.sqlSessionFactory,
                    SqlSessionTemplate.this.executorType,
                    SqlSessionTemplate.this.exceptionTranslator);
            try {
                Object result = method.invoke(sqlSession, args);
                if (!SqlSessionUtils.isSqlSessionTransactional(sqlSession, SqlSessionTemplate.this.sqlSessionFactory)) {
                    sqlSession.commit();
                }
                return result;
            } catch (Throwable t) {
                Throwable unwrapped = ExceptionUtil.unwrapThrowable(t);
                if (SqlSessionTemplate.this.exceptionTranslator != null && unwrapped instanceof PersistenceException) {
                    unwrapped = SqlSessionTemplate.this.exceptionTranslator.translateExceptionIfPossible((PersistenceException) unwrapped);
                }
                throw unwrapped;
            } finally {
                SqlSessionUtils.closeSqlSession(sqlSession, SqlSessionTemplate.this.sqlSessionFactory);//最终为sqlsesson的关闭
            }
        }
    }

待续……

你可能感兴趣的:(框架)