原理介绍
http://elim.iteye.com/blog/2353672
http://www.mybatis.org/mybatis-3/zh/index.html
mybatis是jdbc的封装实现,实现了缓存功能,基本实现为
xmlconfigrationBuild的mybatis的配置文件
sqlsessionFactory->sqlSession-->mapper->接口实现
实现类:excetor-->BaseExcetor{simpleExcetor,resueExcetor,batchExcetor}
mybatis3.0的特性使用
使用Mapper<T>接口,不用写xml文件
https://github.com/abel533/Mapperc
参数判断(
<if test="_parameter != null">
)
面试题:
http://www.cnblogs.com/huajiezh/p/6415388.html
mybatis调用存储过程
http://www.cnblogs.com/lls002-1435/p/5966069.html