如果整合过程中mapper跟mapper.xml文件在同一包mapper下
那么在将BookMapper.xml文件注入mybatis配置文件的代码是
<mappers>
<mapper class="com.www.mapper.BookMapper"/>
</mappers>
要是mapper跟mapper.xml分别在不同的包时
那么在将BookMapper.xml文件注入mybatis配置文件的代码是
<mappers>
<mapper resource="mapper/BooksDao.xml"/>
</mappers>