+++ title = "MyBatis2" description = "" weight = 10 type = ""
draf = true
+++
- 深入了解 MyBatis 参数
- 深入了解 MyBatis 返回值
- MyBatis-Spring 配置简单了解
- MybatisGeneator 详解
- MyBatis Geneator 中文文档
- MyBatis 博客专题
官方仓库:https://github.com/mybatis/mybatis-3
官方文档:http://mybatis.github.io/mybatis-3/index.html
MyBatis-Spring 官方文档:https://mybatis.github.io/spring/index.html
源码地址:
源码地址:
只有基础的配置信息,没有任何现成的功能,作为新手入门搭建框架的基础
前三个框架集成了 MyBatis 分页插件和 MyBatis 通用 Mapper,最后一个spring4-simple 没有集成任何插件。
上面这个项目集成了MyBatis 分页插件和 MyBatis 通用 Mapper.
源码地址:http://git.oschina.net/free/Mybatis_Utils/tree/master/JdbcType
gitosc地址:SqlHelper
相关文章: Mybatis工具SqlHelper - 获取Mybatis方法的Sql
源码地址:http://git.oschina.net/free/Mybatis_Utils/tree/master/Performance
性能分析拦截器主要输出Sql以及Sql执行的时间,该拦截器会损失一定的整体性能,所以建议在测试环境使用,正式环境不建议使用。
另外,如果配置了多个拦截器,那么一定要把这个拦截器配置在第一个,否则其他需要修改Sql的拦截器会对该拦截器获取Sql部分产生影响。
建议根据个人需求对该拦截器进行修改。
例如返回结果中Map的{REAL_NAME:liuzh}
会转换为{realName:liuzh}
源码地址:http://git.oschina.net/free/Mybatis_Utils/tree/master/CameHumpMap