• Mybaits中的简单的学习,以及他们之中的源码的简单的刨析


    SqlSession是Mybatis最重要的的构建之一,可以简单的惹味Mybatis一些列配置的目的是历史与JDBC的connecton对象的SqSession对象,这样才能于数据库开始沟通,mybaits其实就是sqlsession的增删查改的增强,纳闷他是如何执行实现的,

      SqlSession简单介绍

      SqlSession提供了select/insert/updte/delete方法,在旧版本中使用的是SqlSession接口中使用的这些方法,但是新版本中Mybatis中建议使用的是Mapper的方法。映射器其实就是一个动态代理队形,然后进入MapperMethod的

    excuutor  其实就是好到SqlSession ,执行SQL查询,从底层俩说他的本事是通过动态代理让接口跑起来,之后采用命令模式,最后还是采用SqlSession的接口方法,执行sql查询的。

      SqlSession的重要的四个对象

        1. Execute: 调度执行StatementHandler,ParmmeterHandlerResultHandler执行相应的sql

        2. StatementHandler:使用数据苦苦Statement(PrepareStatement) 下hi行操作,基底层是凤凰装好的的prepareStatement

        3. ParameterHandler:处理Sql参数

        3. ResultHandler:j结果集ResultSet封装处理

      SqlSession四大对象

        1. Execute 执行器,主要有三种执行器,SIMPLE默认的执行器、REISE是一些红预处理语句,BATCH批量更新批量专用处理器,

    package org.apache.ibatis.session;
    
    /**
     * @author Clinton Begin
     */
    public enum ExecutorType {
      SIMPLE, REUSE, BATCH
    }

        2. 执行处理器,Executor会先掉哦那个StatementHandler的prapare()方法预编译SQL语句,同事设置一些基本的运行餐宿,然后,StatementHandler 的parameterize()方法实际上启用了ParameteHandler设置参数,resultHandler在组装查询结果返回调用者完成一次预编译。

        第一:Executor通过Configuraton对象中的newExecutor()方法中选择相应的执行器生成

        

    public Executor newExecutor(Transaction transaction, ExecutorType executorType) {
        executorType = executorType == null ? defaultExecutorType : executorType;
        executorType = executorType == null ? ExecutorType.SIMPLE : executorType;
        Executor executor;
        if (ExecutorType.BATCH == executorType) {
          executor = new BatchExecutor(this, transaction);
        } else if (ExecutorType.REUSE == executorType) {
          executor = new ReuseExecutor(this, transaction);
        } else {
          executor = new SimpleExecutor(this, transaction);
        }
        if (cacheEnabled) {
          executor = new CachingExecutor(executor);
        }
        executor = (Executor) interceptorChain.pluginAll(executor);
        return executor;
      } 
    

      

    MyBaits 的拦截器的介绍以及初步的认识。

  • 相关阅读:
    Linux-grep 命令和find 命令 (6)
    第1阶段——u-boot分析之make 100ask24x0_config指令(1)
    shell变量$(CURDIR),$0,$1,$2,$#含义解释
    ln命令详解
    快速解决设置Android 23.0以上版本对SD卡的读写权限无效的问题
    java.io.IOException: Cleartext HTTP traffic to xxx.xxx.xxx.xxx not permitted
    AndroidStudio 3.0中之后无法打开DDMS [Android Device Monitor] 问题
    解决android sdk docs帮助文档打开慢的问题
    Android Intent的使用
    约束布局ConstraintLayout详解
  • 原文地址:https://www.cnblogs.com/dousil/p/13173247.html
Copyright © 2020-2023  润新知