mybatis使用总结

1. mybatis基本构成

图1

知识点:

  1. SqlSessionFactoryBuilder是SqlSessionFactory的构建器
  2. SqlSessionFactory用于生成SqlSession
  3. SqlSession可以直接执行sql返回结果,也可以通过其获取Mapper接口

以下代码均来自mybatis官方示例

示例1-使用SqlSession执行获取数据:

  @Test
  public void shouldSelectAllAuthors() throws Exception {
    SqlSession session = sqlMapper.openSession();
    try {
      List<Author> authors = session.selectList("org.apache.ibatis.domain.blog.mappers.AuthorMapper.selectAllAuthors");
      assertEquals(2, authors.size());
    } finally {
      session.close();
    }
  }

使用session.selectList相关接口属于功能性代码,可以使用Mapper的方式,更加符合面向对象思维,具备更强的代码可读性

示例2-使用Mapper执行获取数据:

  @Test
  public void shouldSelectAuthorsUsingMapperClass() {
    SqlSession session = sqlMapper.openSession();
    try {
      AuthorMapper mapper = session.getMapper(AuthorMapper.class);
      List<Author> authors = mapper.selectAllAuthors();
      assertEquals(2, authors.size());
    } finally {
      session.close();
    }
  }

2. 配置(configuration)

2.1 别名(typeAlias)

参考:
https://www.cnblogs.com/lxcmyf/p/6444120.html

示例3-别名的使用:

<configuration>
  ...
  <typeAliases>
    <typeAlias alias="Author" type="org.apache.ibatis.domain.blog.Author"/>
  </typeAliases>
</configuration>

<mapper namespace="org.apache.ibatis.domain.blog.mappers.AuthorMapper">
    <select id="selectAllAuthors" resultType="Author">
        select * from author
    </select>
</mapper>

2.2 类型处理器(TypeHandler)

TypeHandler也可以使用别名来注册,并在使用时也使用别名

示例4-使用类型处理器别名:

    <resultMap id="appInfo" type="xxx.XxxEntity">
        <id column="id" property="id" typeHandler="idHandler"/>
        <result column="created_at" property="createdAt"/>
        <result column="updated_at" property="updatedAt"/>
    </resultMap>

当使用多个idHandler的时候,如果该TypeHandler全局未注册时,则会被实例化多次,可以在Configuration中全局注册TypeHandler

示例5-注册类型处理器:

    <typeHandlers>
        <package name="com.xxx.xxx.typeHandlers"/>
    </typeHandlers>

https://blog.csdn.net/chenbaige/article/details/72568959

3. Mapper

3.1 Mapper的使用

  1. 定义Mapper接口
  2. 在Config中添加Mapper映射xml

示例6-Mapper的定义:

public interface AuthorMapper {
  void selectAuthor(int id, ResultHandler handler);
}

<configuration>
  ...
  <mappers>
    <mapper resource="org/apache/ibatis/builder/AuthorMapper.xml"/>
  </mappers>

</configuration>

其在解析过程中内部调用了Configuration类中MapperRegistry的addMapper相关方法

3.2 Mapper的生成

Mapper的声明定义是一个接口,所以其生成的示例其实是一个代理对象

见下图执行流程

实际上走了一圈,最终还是回到了示例1的代码

4. mybatis-spring

spring很大一部分工作是帮助简化配置

4.1 SqlSessionFactoryBean用于构建SqlSessionFactory,其主要是开放属性来封装Configuration,最终传递给SqlSessionFactoryBuilder生成SqlSessionFactory

以下是为便利的改进

1.封装了DataSource属性,隐藏了内部细节
2.MapperLocations以扫描目录的形式简化了apper的配置方式

示例7-mapper在xml中配置

  <mappers>
    <mapper resource="org/apache/ibatis/builder/AuthorMapper.xml"/>
    <mapper resource="org/apache/ibatis/builder/BlogMapper.xml"/>
    <mapper resource="org/apache/ibatis/builder/CachedAuthorMapper.xml"/>
    <mapper resource="org/apache/ibatis/builder/PostMapper.xml"/>
    <mapper resource="org/apache/ibatis/builder/NestedBlogMapper.xml"/>
  </mappers>

如实1个项目中有超过20个以上的配置,那就会比较麻烦,SqlSessionFactoryBean刚好简化了该配置

示例8-mapper改进后的配置

    @Bean
    public SqlSessionFactoryBean sqlSessionFactoryBean() throws Exception{
        SqlSessionFactoryBean bean= new SqlSessionFactoryBean();
        bean.setDataSource(dataSource());
        bean.setConfigLocation(new  ClassPathResource("mybatis/config.xml"));
        Resource[] resources = new PathMatchingResourcePatternResolver().getResources("classpath:mybatis/**/*Mapper.xml");
        bean.setMapperLocations(resources);
        return bean;
    }

4.2 MapperScannerConfigurer

SqlSessionFactoryBean解决了SqlSessionFactory创建的问题,再来看Mapper的使用问题,在实际场景中Mapper一般在Service中使用,如下示例

示例9-mapper在Spring中的实际使用方式

@Service
public class ArticleServiceImpl implements ArticleService {

    @Autowired
    private ArticleMapper articleMapper;

    public List<Article> getArticleList() {
        return articleMapper.getArticleList();
    }
}

这里有一个问题ArticleMapper是如何注入到spring中来的,比较简单的方式就是采用以下流程SqlSessionFactory->SqlSession->getMapper的方式

示例10-手动创建Mapper

    @Bean
    public ArticleMapper createArticleMapper(SqlSessionFactory factory) {
        return factory.openSession().getMapper(ArticleMapper.class);
    }

    @Bean
    public MediaMapper createMediaMapper(SqlSessionFactory factory) {
        return factory.openSession().getMapper(MediaMapper.class);
    }

MapperScannerConfigurer跟SqlSessionFactoryBean一样,解决了自动扫描的问题,如下图

processBeanDefinitions方法是核心处理方法

示例11-processBeanDefinitions

  private void processBeanDefinitions(Set<BeanDefinitionHolder> beanDefinitions) {
    GenericBeanDefinition definition;
    for (BeanDefinitionHolder holder : beanDefinitions) {
      definition = (GenericBeanDefinition) holder.getBeanDefinition();

      if (logger.isDebugEnabled()) {
        logger.debug("Creating MapperFactoryBean with name '" + holder.getBeanName() 
          + "' and '" + definition.getBeanClassName() + "' mapperInterface");
      }

      // the mapper interface is the original class of the bean
      // but, the actual class of the bean is MapperFactoryBean
      definition.getConstructorArgumentValues().addGenericArgumentValue(definition.getBeanClassName()); // issue #59
      definition.setBeanClass(this.mapperFactoryBean.getClass());

      definition.getPropertyValues().add("addToConfig", this.addToConfig);

      boolean explicitFactoryUsed = false;
      if (StringUtils.hasText(this.sqlSessionFactoryBeanName)) {
        definition.getPropertyValues().add("sqlSessionFactory", new RuntimeBeanReference(this.sqlSessionFactoryBeanName));
        explicitFactoryUsed = true;
      } else if (this.sqlSessionFactory != null) {
        definition.getPropertyValues().add("sqlSessionFactory", this.sqlSessionFactory);
        explicitFactoryUsed = true;
      }

      if (StringUtils.hasText(this.sqlSessionTemplateBeanName)) {
        if (explicitFactoryUsed) {
          logger.warn("Cannot use both: sqlSessionTemplate and sqlSessionFactory together. sqlSessionFactory is ignored.");
        }
        definition.getPropertyValues().add("sqlSessionTemplate", new RuntimeBeanReference(this.sqlSessionTemplateBeanName));
        explicitFactoryUsed = true;
      } else if (this.sqlSessionTemplate != null) {
        if (explicitFactoryUsed) {
          logger.warn("Cannot use both: sqlSessionTemplate and sqlSessionFactory together. sqlSessionFactory is ignored.");
        }
        definition.getPropertyValues().add("sqlSessionTemplate", this.sqlSessionTemplate);
        explicitFactoryUsed = true;
      }

      if (!explicitFactoryUsed) {
        if (logger.isDebugEnabled()) {
          logger.debug("Enabling autowire by type for MapperFactoryBean with name '" + holder.getBeanName() + "'.");
        }
        definition.setAutowireMode(AbstractBeanDefinition.AUTOWIRE_BY_TYPE);
      }
    }
  }

最终到了MapperFactoryBean,获取到的对象还是调用了SqlSession的getMapper方法

示例11-MapperScannerConfigurer配置

    @Bean("mapperScannerConfigurer")
    @DependsOn(value= {"sqlSessionFactory"})
    public MapperScannerConfigurer mapperScannerConfigurer() {
        MapperScannerConfigurer configurer = new MapperScannerConfigurer();
        configurer.setBasePackage("xxx.xxx.dal");
        configurer.setSqlSessionFactoryBeanName("sqlSessionFactory");
        return  configurer;
    }

4.3 MapperScan注解

其效果与MapperScannerConfigurer一样,方式不同,优先推荐使用注解配置的方式

4.4 SqlSessionTemplate

先看下面示例:

示例12-session.close

  @Test
  public void shouldSelectAllPostsUsingMapperClass() throws Exception {
    SqlSession session = sqlMapper.openSession();
    try {
      BlogMapper mapper = session.getMapper(BlogMapper.class);
      List<Map> posts = mapper.selectAllPosts();
      assertEquals(5, posts.size());
    } finally {
      session.close();
    }
  }

每次使用完毕后都要调用一下session.close.这个时候肯定又要发挥动态代理的作用

示例13-SqlSessionTemplate

  public SqlSessionTemplate(SqlSessionFactory sqlSessionFactory, ExecutorType executorType,
      PersistenceExceptionTranslator exceptionTranslator) {

    notNull(sqlSessionFactory, "Property 'sqlSessionFactory' is required");
    notNull(executorType, "Property 'executorType' is required");

    this.sqlSessionFactory = sqlSessionFactory;
    this.executorType = executorType;
    this.exceptionTranslator = exceptionTranslator;
    this.sqlSessionProxy = (SqlSession) newProxyInstance(
        SqlSessionFactory.class.getClassLoader(),
        new Class[] { SqlSession.class },
        new SqlSessionInterceptor());
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public <T> T selectOne(String statement) {
    return this.sqlSessionProxy.<T> selectOne(statement);
  }

其实写了这么多,刚开始也只是对于Mapper接口如何生成类比较感兴趣,引起的一连串流程问题

参考:
深入浅出MyBatis技术原理与实战
https://www.cnblogs.com/ChenLLang/p/5307590.html

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容

  • 1. 简介 1.1 什么是 MyBatis ? MyBatis 是支持定制化 SQL、存储过程以及高级映射的优秀的...
    笨鸟慢飞阅读 5,505评论 0 4
  • 单独使用mybatis是有很多限制的(比如无法实现跨越多个session的事务),而且很多业务系统本来就是使用sp...
    七寸知架构阅读 3,444评论 0 53
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,649评论 18 139
  • 官方文档 简介 入门 XML配置 XML映射文件 动态SQL Java API SQL语句构建器 日志 一、 JD...
    拾壹北阅读 3,544评论 0 52
  • # 前言 在前两篇文章我们在 mybatis 源码中探究了他的运行原理,但在实际使用中,我们需要将其和Spring...
    莫那一鲁道阅读 3,460评论 0 4