Bootstrap

Spring与Mybatis整合--使用MapperScannerConfigurer批量扫描Mapper接口实现

此文为续文,请阅读上文:http://blog.csdn.net/u013821825/article/details/51622361

介绍使用MapperScannerConfigurer批量扫描Mapper接口实现整合
1、配置spring配置文件applicationContext-scan.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:util="http://www.springframework.org/schema/util" xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jpa="http://www.springframework.org/schema/data/jpa"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocat
;