`

在Mybatis-spring中由于默认Autowired导致不能配置多个数据源的问题分析及解决

 
阅读更多

在使用Mybatis中,通常使用接口来表示一个Sql Mapper的接口以及相对应的xml实现,而在spring的配置文件中,通常会使用MapperScannerConfigurer来达到批量扫描以及简化spring bean接口配置的目的,以直接让mybatis的各个接口直接成为spring的bean组件。那么,一个通常的spring配置文件如下所示:

 <bean id="datasource" class="org.springframework.jdbc.datasource.SimpleDriverDataSource"/>

 <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean" p:dataSource-ref="datasource"/>
 <bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate">
  <constructor-arg index="0" ref="sqlSessionFactory"/>
 </bean>
 <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"
    p:dataSource-ref="datasource"/>
 <bean  class="org.mybatis.spring.mapper.MapperScannerConfigurer"
    p:basePackage="mapper"/>
上面的配置分别对应于一个基本的mybatis最需要的信息。值得需要注意的是,在配置MapperScannerConfigurer时,这里并没有指定sqlSessionFactoryName以及sqlTemplateName。在没有指定的情况下,spring就会指定默认的查找规则进行查询,如分别查找到默认的sqlSessionFactory实现和sqlSessionTemplate实现,并注入到MapperFactoryBean中。

这种配置方式,在一个数据源时,没有问题,但是在如果存在多个数据源时,上面的配置就存在问题了。在多个数据源时,如果配置不正确,或者配置的步骤不正确,将直接产生莫名奇妙的问题。而这个问题的产生,不在于开发人员,即不在于程序员本身,而在于spring,或来自于mybatis-spring,在其内部画蛇添足的注解,将导致整个多数据源配置完全不能工作。


在mybatis-spring内部,即在配置MapperScannerConfigurer时,手册告诉我们,可以不配置sqlSessionFactoryName和sqlTemplateName,因为不配置的情况下spring会自动进行注入。但是,手册没有告诉我们它是怎么来注入的,如果你仔细查看源代码,你会发现,它使用了让人悲剧的@Autowired悲剧来进行注解,那么这个注解是怎么工作的呢。以下是它的工作方式:

1.先根据beanName进行注解,那么这个beanName是指什么呢,即参数的名称。
2.如果未找到,则尝试根据类型寻找所有这个类型的bean信息。如果查找到多于1个,则会报NotUnique异常;但如果没有查找,则会根据Autowired中的required属性进行处理,如果required为false,则不进行注入,否则报异常信息。
问题就在于它的工作方式,当出现多个同类型的bean时,它并不是总是报异常。因此,当第一个步骤满足时,它总会优先拿到满足条件的bean,而并不会因为有同类型的多个bean而报异常。那么,我们来看用于实现mybaits-spring中bean的代理工厂,即MapperFactoryBean的那2个属性定义:

  @Autowired(required = false)
  public final void setSqlSessionFactory(SqlSessionFactory sqlSessionFactory) {
    if (!this.externalSqlSession) {
      this.sqlSession = new SqlSessionTemplate(sqlSessionFactory);
    }
  }

  @Autowired(required = false)
  public final void setSqlSessionTemplate(SqlSessionTemplate sqlSessionTemplate) {
    this.sqlSession = sqlSessionTemplate;
    this.externalSqlSession = true;
  }
上面的定义在MapperFactoryBean的父类SqlSessionDaoSupport中。仔细看这两个参数名,sqlSessionFactory和sqlSessionTemplate,是不是很熟悉。对,它就是我们在applicationContext.xml中定义的bean的默认id值。那么,当出现多个数据源时,它是怎么工作的呢。我们以另一个配置为例。如下所示:

 <bean  class="org.mybatis.spring.mapper.MapperScannerConfigurer"
    p:annotationClass="com.m_ylf.study.java.mybatis.Mybatis"
    p:basePackage="mapper2"
    p:sqlSessionFactoryBeanName="sessionFactory2"
   />
根据mybatis-spring的配置建议,我们不能即配置sqlSessionFactoryBeanName和sqlSessionTemplate,只能配置其中一个即可。好吧,我们配置了sqlSessionFactoryBeanName。如果你认为,它能够像你期望地那样工作,你肯定会失望了。因为最终的结果会是:

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'test.tc' doesn't exist
如果,你运行在oracle上,则是类似某用户下不存在指定的表的错误,为什么会产生这个错误。而且,这个错误发生在运行期,而不是在spring的加载过程中。你绝对想不到,因为经过Autowired的处理,MapperFactoryBean即会运行setSqlSessionFactory方法,也会运行setSqlSessionTemplate方法。而更让人郁闷的是,你设置的sqlSessionFactoryBeanName根本没有用。这来自于内部,自以为是的externalSqlSession变量。当此变量为true时,setSqlSessionFactory方法会直接返回。因为,setSqlSessionTemplate会比属性注入的applyPropertyValues更先运行,这一切是不是很让人郁闷。

那么,你会想,那么我们使用sqlSessionTemplateName这个变量吧,好吧。这个变量是正常工作的,这也来自于内部的externalSqlSession变量。你不要以为setSqlSessionFactory不会运行,而是因为这个变量让setSqlSessionFactory不能改变值而已。

那么,再对应于使用sqlSessionFactoryName所产生的问题,问题就在于在注入第二个数据源的信息时,并没有使用对应第二个数据源的信息,而是根据默认的查询策略直接找到了默认的第一个数据源信息。本来应该文号第二个数据源的sql信息,改去访问第一个数据源,肯定找不到任何信息,因为想要访问的数据表都不存在。

在这个情况中,不要认为,我们没有把默认的第一个数据源的信息命名为sqlSessionFactoryName1和sqlSessionTemplate1。在大多数的项目中,不会从一开始就知道会有多个数据源的,在默认只有一个数据源的情况下,不会有人将bean id命名为那样的奇怪名称。

最后,我们再来看下,让mybatis-spring报警告的同时配置sqlSessionFactoryName和sqlSessionTemplateName的情况。在这个情况下,mybaits-MapperScannerConfigurer会很好心的给你报一个警告,如下:

logger.warn("Cannot use both: sqlSessionTemplate and sqlSessionFactory together. sqlSessionFactory is ignored.");然后,它不知道,这个并不是警告,而是根本spring容器就不能启动成功,即这样的配置会让整个spring容器启动失败。为什么,这要规结于内部奇怪的代码,如下所示:

//第一部分,探测到sqlSessionFactoryName
if (StringUtils.hasLength(MapperScannerConfigurer.this.sqlSessionFactoryBeanName)) {
            definition.getPropertyValues().add("sqlSessionFactory", 
new RuntimeBeanReference(MapperScannerConfigurer.this.sqlSessionFactoryBeanName));
}

//第二部分,探测到sqlSessionTemplateName
if (StringUtils.hasLength(MapperScannerConfigurer.this.sqlSessionTemplateBeanName)) {
            }
            definition.getPropertyValues().add("sqlSessionTemplate", 
new RuntimeBeanReference(MapperScannerConfigurer.this.sqlSessionTemplateBeanName));
            definition.getPropertyValues().add("sqlSessionFactory", null);
}问题,在于后面的definition.getPropertyValues().add("sqlSessionFactory", null);代码,这句话是说,行,我们会调用setSqlSessionFactory(null)方法。看起来没有错误,因为我们在调用了setSqlSessionTemplate之后,再调用setSqlSessionFactory(null)不会出错,因为后面的调用无效嘛。但是,问题关键在于:setSqlSessionFactory(null)会比setSqlSessionTemplate更先调用,在先调用的情况下,会产生NullPointerException异常。这个异常在整个spring的错误堆栈中找不到,你根本查不到怎么会产生这个异常,而且spring报的异常如下所示:


Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'tcMapper' 
defined in file xxxxxxxx: Error setting property values;
 nested exception is org.springframework.beans.PropertyBatchUpdateException;
 nested PropertyAccessExceptions (1) are:
PropertyAccessException 1: org.springframework.beans.MethodInvocationException: Property 'sqlSessionFactory' threw exception;
 nested exception is java.lang.NullPointerException错误原因在于在调用setSqlSessionFactory方法时,会将sqlSessionFactory传递给sqlSessionTemplate以用于创建新的sqlSessionTemplate,而在sqlSessionTemplate的构造方法中,会调用sqlSessionFactory.getConfiguration().getDefaultExecutorType()方法,这就是NPE的来源。

 

综全所述,如果想要成功运行,一是修改bean命名,二是修改MapperScannerConfigurer配置中的属性一定为sqlSessionTemplateBeanName而不是sqlSessionFactoryBeanName。

分享到:
评论

相关推荐

    mybatis-spring-1.31.jar

    首先,MyBatis-Spring通过自动配置,可以将MyBatis的数据源、SqlSessionFactory和Mapper接口与Spring的bean容器集成。这使得我们可以在Spring配置文件中声明式地管理MyBatis的相关组件,避免了手动创建和管理...

    mybatis-spring-1.3.0.jar 下载

    在具体使用时,我们需要在Spring的配置文件中添加MyBatis-Spring的相关配置,包括数据源、SqlSessionFactory和MapperScannerConfigurer等。例如: ```xml &lt;bean id="dataSource" class="org.springframework.jdbc....

    MyBatis整合Spring中间件jar包 mybatis-spring-1.3.0.jar

    在Spring配置文件中,我们需要定义一个`SqlSessionFactoryBean`,并指定数据源、MyBatis的配置文件路径等属性。例如: ```xml &lt;bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"&gt; ...

    Mybatis-Spring-1.2.2中文文档.zip

    在Spring中,可以通过SqlSessionFactoryBean进行配置,指定Mybatis的配置文件位置和数据源。 4. **Mapper接口与Mapper XML** Mybatis-Spring支持通过Mapper接口和对应的XML映射文件进行SQL操作。接口方法名和XML中...

    mybatis-spring-1.1.1-bundle

    此外,对于多数据源的支持也是其一大亮点,通过配置不同的SqlSessionFactory,可以轻松处理多个数据库的访问。 7. 最新版与旧版差异 虽然mybatis-spring-1.1.1已是较旧的版本,但理解它的运作机制对学习最新版本也...

    mybatis-spring-1.0.1-bundle.zip

    它扩展了 Spring 的 FactoryBean 接口,可以直接在 Spring 配置文件中声明,通过配置数据源、MyBatis 的配置文件等参数,轻松创建 SqlSessionFactory。 2. SqlSessionTemplate:这是一个线程安全的 SqlSession 实现...

    mybatis-spring-1.3.2

    2. **配置 SqlSessionFactory**:在 Spring 配置文件中定义 SqlSessionFactory,并指定数据源。 3. **配置 MapperScannerConfigurer**:扫描指定包下的 Mapper 接口,使其成为 Spring 的 Bean。 4. **Service 层的...

    mybatis-spring整合jar包

    - 配置SqlSessionFactory:在Spring配置文件中定义SqlSessionFactoryBean,指定MyBatis的配置文件路径和数据源。 - 创建Mapper接口:根据MyBatis的XML映射文件创建对应的Mapper接口。 - 配置Mapper:使用...

    mybatis-Spring整合jar包

    7. **配置集成**:在Spring的配置文件中,需要添加MyBatis-Spring的相关配置,如数据源、SqlSessionFactory、MapperScannerConfigurer等,以完成MyBatis和Spring的整合。 通过这些知识点,我们可以理解MyBatis-...

    mybatis-spring-1.2.5.zip

    它能够自动配置数据源、事务管理器以及MyBatis的配置文件,极大地简化了MyBatis在Spring环境中的配置。 2. SqlSessionTemplate:它是MyBatis-Spring提供的一个线程安全的SqlSession实现,可以避免手动处理...

    MyBatis-Spring整合示例

    MyBatis-Spring的整合主要是为了解决MyBatis与Spring之间的集成问题,实现Spring对MyBatis的事务管理和DAO对象的自动管理,使得开发者可以更加专注于业务逻辑的实现,而不是繁琐的配置和对象管理。 2. **配置集成*...

    Mybatis-Spring-master

    1. **Mybatis配置**:在项目中,会有一个mybatis的配置文件(如mybatis-config.xml),用于设置Mybatis的基本属性,包括数据源、SqlSessionFactory等。此外,还会定义Mapper接口和对应的XML映射文件,它们定义了SQL...

    mybatis-spring集成

    - 配置SqlSessionFactory:创建一个配置文件,如mybatis-config.xml,定义数据源、事务管理器和SqlSessionFactory。 - 创建Mapper接口:基于MyBatis的Mapper XML文件,创建对应的Java接口,定义SQL操作方法。 - ...

    spring-mybatis-spring-1.3.2.tar.gz

    1. 配置整合:在Spring的配置文件中,需要添加MyBatis的SqlSessionFactoryBean,配置数据源、Mapper扫描路径等信息。 2. Mapper接口与XML配置:定义Mapper接口,每个方法对应一个SQL语句,XML文件中编写具体的SQL和...

    mybatis-3.2.6 mybatis-spring-1.2.2

    标题 "mybatis-3.2.6 mybatis-spring-1.2.2" 提及的是MyBatis的3.2.6版本和mybatis-spring的1.2.2版本,这两个组件在Java开发中常用于构建Spring MVC框架的应用。MyBatis是一个优秀的持久层框架,它支持定制化SQL、...

    SpringBoot整合mybatis-plus实现多数据源的动态切换且支持分页查询.pdf

    在SpringBoot项目中,整合Mybatis-Plus并实现多数据源的动态切换,同时支持分页查询是一项常见的需求。以下将详细阐述这个过程中的关键步骤和技术要点。 首先,我们需要引入必要的Maven依赖。这里提到了四个关键...

    MyBatis和Spring整合jar:mybatis-3.2.7.jar等

    1. **配置MyBatis**:在Spring的配置文件中,定义数据源、SqlSessionFactoryBean,并引入MyBatis的配置文件。 2. **配置MyBatis-Spring**:配置SqlSessionTemplate或SqlSessionFactoryBean,用于Spring管理和执行...

    MyBatis-Spring配置教程,非常适合初学者

    在Spring配置文件中,定义一个PlatformTransactionManager bean,通常使用DataSourceTransactionManager,并将数据源关联起来。这样,Spring就能自动管理事务的开始、提交、回滚。 为了实现AOP(面向切面编程),...

    mybatis的jar包mybatis-3.1.1.jar与mybatis-spring-1.1.1.jar

    2. **配置SqlSessionFactory**:在Spring配置文件中定义SqlSessionFactoryBean,指定数据源和MyBatis的配置文件路径。 3. **配置Mapper**:为每个Mapper接口创建一个MapperFactoryBean,关联对应的XML映射文件。 4. ...

    mybatis-spring中文配置

    在Spring的配置文件中定义`SqlSessionFactoryBean`,并通过`dataSource`属性指定数据源。 ```xml &lt;bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"&gt; ``` **属性详解:** - `...

Global site tag (gtag.js) - Google Analytics