Spring和mybatis整合 org.mybatis.spring.mapper.MapperScannerConfigurer
Posted 最最么么哒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring和mybatis整合 org.mybatis.spring.mapper.MapperScannerConfigurer相关的知识,希望对你有一定的参考价值。
在springmvc与mybatis整合时,需要对每一个mapper定义对应的一个MapperFactoryBean,可以使用MapperScannerConfigurer自动扫描mapper,然后自动为我们注册对应的MapperFactoryBean对象。 例如:
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="annotationClass" value="org.springframework.stereotype.Repository" /> <property name="basePackage" value="net.smui" /> </bean>
basePackage表示需要扫描的包,annotationClass表示需要扫描该包下有该的注解的类。 分享一个链接 Mybatis3.2.1整合Spring3.1
以上是关于Spring和mybatis整合 org.mybatis.spring.mapper.MapperScannerConfigurer的主要内容,如果未能解决你的问题,请参考以下文章
springboot整合mybatis使用xml实现sql语句的配置,在insert之后返回自增id
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.myba