Spring整合Mybatis解决 Property 'sqlSessionFactory' or 'sqlSessionTemplate' are required(
Posted 人艰不拆_zmc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring整合Mybatis解决 Property 'sqlSessionFactory' or 'sqlSessionTemplate' are required(相关的知识,希望对你有一定的参考价值。
在Spring4和Mybatis3整合的时候,dao层注入‘sqlSessionFactory‘或‘sqlSessionTemplate‘会报错解决办法如下:
package com.alibaba.webx.MyWebxTest.myWebX.module.dao.impl; import org.apache.ibatis.session.SqlSessionFactory; import org.mybatis.spring.SqlSessionTemplate; import org.mybatis.spring.support.SqlSessionDaoSupport; import org.springframework.beans.factory.annotation.Autowired; /** * 公用的DAO * @author zkn * */ public abstract class AbstractDao extends SqlSessionDaoSupport{ /** * Autowired 必须要有 */ @Autowired public void setSqlSessionFactory(SqlSessionFactory sqlSessionFactory){ super.setSqlSessionFactory(sqlSessionFactory); } }
原因是因为Mybatis3依赖的jar位 mybatis-spring-1.2.0.jar,这个版本及以上的版本中对SqlSessionDaoSupport类中的‘sqlSessionFactory‘或‘sqlSessionTemplate‘注入方式进行了调整。
以上是关于Spring整合Mybatis解决 Property 'sqlSessionFactory' or 'sqlSessionTemplate' are required(的主要内容,如果未能解决你的问题,请参考以下文章
解决spring整合mybatis时错误 ‘org.mybatis.spring.mapper.MapperScannerConfigurer#0‘
解决spring整合mybatis时错误 ‘org.mybatis.spring.mapper.MapperScannerConfigurer#0‘
解决spring整合mybatis时错误 ‘org.mybatis.spring.mapper.MapperScannerConfigurer#0‘